comparison src/errors.h @ 27043:15f40772e10a v8.2.4050

patch 8.2.4050: Vim9: need to prefix every item in an autoload script Commit: https://github.com/vim/vim/commit/dc4451df61a6aa12a0661817b7094fb32f09e11d Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 9 21:36:37 2022 +0000 patch 8.2.4050: Vim9: need to prefix every item in an autoload script Problem: Vim9: need to prefix every item in an autoload script. Solution: First step in supporting "vim9script autoload" and "import autoload".
author Bram Moolenaar <Bram@vim.org>
date Sun, 09 Jan 2022 22:45:04 +0100
parents a0a37337428a
children c83631ad3d2a
comparison
equal deleted inserted replaced
27042:8fc14d120630 27043:15f40772e10a
3201 INIT(= N_("E1260: Cannot unlet an imported item: %s")); 3201 INIT(= N_("E1260: Cannot unlet an imported item: %s"));
3202 EXTERN char e_cannot_import_dot_vim_without_using_as[] 3202 EXTERN char e_cannot_import_dot_vim_without_using_as[]
3203 INIT(= N_("E1261: Cannot import .vim without using \"as\"")); 3203 INIT(= N_("E1261: Cannot import .vim without using \"as\""));
3204 EXTERN char e_cannot_import_same_script_twice_str[] 3204 EXTERN char e_cannot_import_same_script_twice_str[]
3205 INIT(= N_("E1262: Cannot import the same script twice: %s")); 3205 INIT(= N_("E1262: Cannot import the same script twice: %s"));
3206 #endif 3206 EXTERN char e_using_autoload_in_script_not_under_autoload_directory[]
3207 INIT(= N_("E1263: Using autoload in a script not under an autoload directory"));
3208 EXTERN char e_autoload_import_cannot_use_absolute_or_relative_path[]
3209 INIT(= N_("E1264: Autoload import cannot use absolute or relative path: %s"));
3210 #endif