comparison src/errors.h @ 29853:31c598083364 v9.0.0265

patch 9.0.0265: no good reason why the "gf" command isn't in the tiny version Commit: https://github.com/vim/vim/commit/f80f40a55ccff0a4331c5fbd1ac446511f622ed0 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 25 16:02:23 2022 +0100 patch 9.0.0265: no good reason why the "gf" command isn't in the tiny version Problem: No good reason why the "gf" command is not in the tiny version. Solution: Graduate the file_in_path feature.
author Bram Moolenaar <Bram@vim.org>
date Thu, 25 Aug 2022 17:15:03 +0200
parents 6c7eddcce52c
children 62350f19d4ed
comparison
equal deleted inserted replaced
29852:8568b72caa9a 29853:31c598083364
851 INIT(= N_("E342: Out of memory! (allocating %lu bytes)")); 851 INIT(= N_("E342: Out of memory! (allocating %lu bytes)"));
852 #ifdef FEAT_PATH_EXTRA 852 #ifdef FEAT_PATH_EXTRA
853 EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[] 853 EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[]
854 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'.")); 854 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."));
855 #endif 855 #endif
856 #ifdef FEAT_SEARCHPATH
857 EXTERN char e_cant_find_directory_str_in_cdpath[] 856 EXTERN char e_cant_find_directory_str_in_cdpath[]
858 INIT(= N_("E344: Can't find directory \"%s\" in cdpath")); 857 INIT(= N_("E344: Can't find directory \"%s\" in cdpath"));
859 EXTERN char e_cant_find_file_str_in_path[] 858 EXTERN char e_cant_find_file_str_in_path[]
860 INIT(= N_("E345: Can't find file \"%s\" in path")); 859 INIT(= N_("E345: Can't find file \"%s\" in path"));
861 EXTERN char e_no_more_directory_str_found_in_cdpath[] 860 EXTERN char e_no_more_directory_str_found_in_cdpath[]
862 INIT(= N_("E346: No more directory \"%s\" found in cdpath")); 861 INIT(= N_("E346: No more directory \"%s\" found in cdpath"));
863 EXTERN char e_no_more_file_str_found_in_path[] 862 EXTERN char e_no_more_file_str_found_in_path[]
864 INIT(= N_("E347: No more file \"%s\" found in path")); 863 INIT(= N_("E347: No more file \"%s\" found in path"));
865 #endif
866 EXTERN char e_no_string_under_cursor[] 864 EXTERN char e_no_string_under_cursor[]
867 INIT(= N_("E348: No string under cursor")); 865 INIT(= N_("E348: No string under cursor"));
868 EXTERN char e_no_identifier_under_cursor[] 866 EXTERN char e_no_identifier_under_cursor[]
869 INIT(= N_("E349: No identifier under cursor")); 867 INIT(= N_("E349: No identifier under cursor"));
870 #ifdef FEAT_FOLDING 868 #ifdef FEAT_FOLDING
1088 INIT(= N_("E443: Cannot rotate when another window is split")); 1086 INIT(= N_("E443: Cannot rotate when another window is split"));
1089 EXTERN char e_cannot_close_last_window[] 1087 EXTERN char e_cannot_close_last_window[]
1090 INIT(= N_("E444: Cannot close last window")); 1088 INIT(= N_("E444: Cannot close last window"));
1091 EXTERN char e_other_window_contains_changes[] 1089 EXTERN char e_other_window_contains_changes[]
1092 INIT(= N_("E445: Other window contains changes")); 1090 INIT(= N_("E445: Other window contains changes"));
1093 #ifdef FEAT_SEARCHPATH
1094 EXTERN char e_no_file_name_under_cursor[] 1091 EXTERN char e_no_file_name_under_cursor[]
1095 INIT(= N_("E446: No file name under cursor")); 1092 INIT(= N_("E446: No file name under cursor"));
1096 EXTERN char e_cant_find_file_str_in_path_2[] 1093 EXTERN char e_cant_find_file_str_in_path_2[]
1097 INIT(= N_("E447: Can't find file \"%s\" in path")); 1094 INIT(= N_("E447: Can't find file \"%s\" in path"));
1098 #endif
1099 #ifdef USING_LOAD_LIBRARY 1095 #ifdef USING_LOAD_LIBRARY
1100 EXTERN char e_could_not_load_library_function_str[] 1096 EXTERN char e_could_not_load_library_function_str[]
1101 INIT(= N_("E448: Could not load library function %s")); 1097 INIT(= N_("E448: Could not load library function %s"));
1102 #endif 1098 #endif
1103 #ifdef FEAT_CLIENTSERVER 1099 #ifdef FEAT_CLIENTSERVER