summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-10-13 15:04:34 +0100
committerBram Moolenaar <Bram@vim.org>2021-10-13 15:04:34 +0100
commit7b829268921e8fc1c63c34d245063c1c4e7d21af (patch)
treea98bfde122c275ec816159fadb69b7280d1dc380 /src/errors.h
parentfff10d9a76099aa9b944f3c33a911127ca1a0c72 (diff)
patch 8.2.3503: Vim9: using g:pat:cmd is confusingv8.2.3503
Problem: Vim9: using g:pat:cmd is confusing. Solution: Do not recognize g: as the :global command. Also for s:pat:repl. (closes #8982)
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index 4cc50e42c1..a2a1394e84 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -666,3 +666,7 @@ EXTERN char e_invalid_value_for_blob_nr[]
INIT(= N_("E1239: Invalid value for blob: %d"));
EXTERN char e_resulting_text_too_long[]
INIT(= N_("E1240: Resulting text too long"));
+EXTERN char e_separator_not_supported_str[]
+ INIT(= N_("E1241: Separator not supported: %s"));
+EXTERN char e_no_white_space_allowed_before_separator_str[]
+ INIT(= N_("E1242: No white space allowed before separator: %s"));