summaryrefslogtreecommitdiff
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-03-13 20:57:19 +0100
committerBram Moolenaar <Bram@vim.org>2021-03-13 20:57:19 +0100
commitcb4e80fab9b1ee67249bde4f784526f900cda70c (patch)
treef2d80bc69d80259f4ae2b8bb2ac501fac2ea00b0 /src/errors.h
parent41cd80335cf318c15c8b0139f53ab5e8a02561ef (diff)
downloadvim-git-cb4e80fab9b1ee67249bde4f784526f900cda70c.tar.gz
patch 8.2.2597: Vim9: "import * as" does not work at script levelv8.2.2597
Problem: Vim9: "import * as" does not work at script level. Solution: Implement using an imported namespace.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index db958e054..c1dc547fb 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -373,3 +373,5 @@ EXTERN char e_argument_name_shadows_existing_variable_str[]
INIT(= N_("E1167: Argument name shadows existing variable: %s"));
EXTERN char e_argument_already_declared_in_script_str[]
INIT(= N_("E1168: Argument already declared in the script: %s"));
+EXTERN char e_import_as_name_not_supported_here[]
+ INIT(= N_("E1169: 'import * as {name}' not supported here"));