comparison src/errors.h @ 26853:806f31579357 v8.2.3955

patch 8.2.3955: error messages are spread out Commit: https://github.com/vim/vim/commit/eb822a280cf4706f7e67319ced1cdf3243b27e20 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 31 15:09:27 2021 +0000 patch 8.2.3955: error messages are spread out Problem: Error messages are spread out. Solution: Move more errors to errors.h.
author Bram Moolenaar <Bram@vim.org>
date Fri, 31 Dec 2021 16:15:03 +0100
parents 30d8377ea1b1
children 2aeea8611342
comparison
equal deleted inserted replaced
26852:f75fd683d54b 26853:806f31579357
299 INIT(= N_("E136: viminfo: Too many errors, skipping rest of file")); 299 INIT(= N_("E136: viminfo: Too many errors, skipping rest of file"));
300 EXTERN char e_viminfo_file_is_not_writable_str[] 300 EXTERN char e_viminfo_file_is_not_writable_str[]
301 INIT(= N_("E137: Viminfo file is not writable: %s")); 301 INIT(= N_("E137: Viminfo file is not writable: %s"));
302 EXTERN char e_cant_write_viminfo_file_str[] 302 EXTERN char e_cant_write_viminfo_file_str[]
303 INIT(= N_("E138: Can't write viminfo file %s!")); 303 INIT(= N_("E138: Can't write viminfo file %s!"));
304 #endif
305 EXTERN char e_file_is_loaded_in_another_buffer[]
306 INIT(= N_("E139: File is loaded in another buffer"));
307 EXTERN char e_use_bang_to_write_partial_buffer[]
308 INIT(= N_("E140: Use ! to write partial buffer"));
309 EXTERN char e_no_file_name_for_buffer_nr[]
310 INIT(= N_("E141: No file name for buffer %ld"));
311 EXTERN char e_file_not_written_writing_is_disabled_by_write_option[]
312 INIT(= N_("E142: File not written: Writing is disabled by 'write' option"));
313 EXTERN char e_autocommands_unexpectedly_deleted_new_buffer_str[]
314 INIT(= N_("E143: Autocommands unexpectedly deleted new buffer %s"));
315 EXTERN char e_non_numeric_argument_to_z[]
316 INIT(= N_("E144: non-numeric argument to :z"));
317 EXTERN char e_shell_commands_and_some_functionality_not_allowed_in_rvim[]
318 INIT(= N_("E145: Shell commands and some functionality not allowed in rvim"));
319 EXTERN char e_regular_expressions_cant_be_delimited_by_letters[]
320 INIT(= N_("E146: Regular expressions can't be delimited by letters"));
321 EXTERN char e_cannot_do_global_recursive_with_range[]
322 INIT(= N_("E147: Cannot do :global recursive with a range"));
323 EXTERN char e_regular_expression_missing_from_global[]
324 INIT(= N_("E148: Regular expression missing from :global"));
325 EXTERN char e_sorry_no_help_for_str[]
326 INIT(= N_("E149: Sorry, no help for %s"));
327 EXTERN char e_not_a_directory_str[]
328 INIT(= N_("E150: Not a directory: %s"));
329 EXTERN char e_no_match_str[]
330 INIT(= N_("E151: No match: %s"));
331 EXTERN char e_cannot_open_str_for_writing[]
332 INIT(= N_("E152: Cannot open %s for writing"));
333 EXTERN char e_unable_to_open_str_for_reading[]
334 INIT(= N_("E153: Unable to open %s for reading"));
335 EXTERN char e_duplicate_tag_str_in_file_str_str[]
336 INIT(= N_("E154: Duplicate tag \"%s\" in file %s/%s"));
337 EXTERN char e_unknown_sign_str[]
338 INIT(= N_("E155: Unknown sign: %s"));
339 EXTERN char e_missing_sign_name[]
340 INIT(= N_("E156: Missing sign name"));
341 EXTERN char e_invalid_sign_id_nr[]
342 INIT(= N_("E157: Invalid sign ID: %d"));
343 EXTERN char e_invalid_buffer_name_str[]
344 INIT(= N_("E158: Invalid buffer name: %s"));
345 EXTERN char e_missing_sign_number[]
346 INIT(= N_("E159: Missing sign number"));
347 EXTERN char e_unknown_sign_command_str[]
348 INIT(= N_("E160: Unknown sign command: %s"));
349 #ifdef FEAT_EVAL
350 EXTERN char e_breakpoint_not_found_str[]
351 INIT(= N_("E161: Breakpoint not found: %s"));
304 #endif 352 #endif
305 353
306 EXTERN char e_no_such_user_defined_command_str[] 354 EXTERN char e_no_such_user_defined_command_str[]
307 INIT(= N_("E184: No such user-defined command: %s")); 355 INIT(= N_("E184: No such user-defined command: %s"));
308 #ifndef FEAT_DIGRAPHS 356 #ifndef FEAT_DIGRAPHS