comparison src/errors.h @ 26057:92c424550367 v8.2.3562

patch 8.2.3562: cannot add color names Commit: https://github.com/vim/vim/commit/e30d10253fa634c4f60daa798d029245f4eed393 Author: Drew Vogel <dvogel@github> Date: Sun Oct 24 20:35:07 2021 +0100 patch 8.2.3562: cannot add color names Problem: Cannot add color names. Solution: Add the v:colornames dictionary. (Drew Vogel, closes https://github.com/vim/vim/issues/8761)
author Bram Moolenaar <Bram@vim.org>
date Sun, 24 Oct 2021 21:45:04 +0200
parents cb5f2515a450
children 8b8470b511f5
comparison
equal deleted inserted replaced
26056:977bbbf36908 26057:92c424550367
144 EXTERN char e_no_such_user_defined_command_str[] 144 EXTERN char e_no_such_user_defined_command_str[]
145 INIT(= N_("E184: No such user-defined command: %s")); 145 INIT(= N_("E184: No such user-defined command: %s"));
146 #ifndef FEAT_DIGRAPHS 146 #ifndef FEAT_DIGRAPHS
147 EXTERN char e_no_digraphs_version[] 147 EXTERN char e_no_digraphs_version[]
148 INIT(= N_("E196: No digraphs in this version")); 148 INIT(= N_("E196: No digraphs in this version"));
149 #endif
150 #if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
151 EXTERN char e_cannot_allocate_color_str[]
152 INIT(= N_("E254: Cannot allocate color %s"));
149 #endif 153 #endif
150 EXTERN char e_ambiguous_use_of_user_defined_command[] 154 EXTERN char e_ambiguous_use_of_user_defined_command[]
151 INIT(= N_("E464: Ambiguous use of user-defined command")); 155 INIT(= N_("E464: Ambiguous use of user-defined command"));
152 EXTERN char e_invalid_command[] 156 EXTERN char e_invalid_command[]
153 INIT(= N_("E476: Invalid command")); 157 INIT(= N_("E476: Invalid command"));
676 INIT(= N_("E1241: Separator not supported: %s")); 680 INIT(= N_("E1241: Separator not supported: %s"));
677 EXTERN char e_no_white_space_allowed_before_separator_str[] 681 EXTERN char e_no_white_space_allowed_before_separator_str[]
678 INIT(= N_("E1242: No white space allowed before separator: %s")); 682 INIT(= N_("E1242: No white space allowed before separator: %s"));
679 EXTERN char e_ascii_code_not_in_range[] 683 EXTERN char e_ascii_code_not_in_range[]
680 INIT(= N_("E1243: ASCII code not in 32-127 range")); 684 INIT(= N_("E1243: ASCII code not in 32-127 range"));
685 EXTERN char e_bad_color_string_str[]
686 INIT(= N_("E1244: Bad color string: %s"));