summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-09-12 20:58:02 +0200
committerBram Moolenaar <Bram@vim.org>2021-09-12 20:58:02 +0200
commitbdcba24d8597abd5af509c2fb9206e64e713c711 (patch)
tree22c00c9bdf6106cb95483c667759b0c846c68203 /src/errors.h
parentca0627df69c29508f6f797bef27a1f5fa9a447d3 (diff)
patch 8.2.3433: :delcommand does not take a -buffer optionv8.2.3433
Problem: :delcommand does not take a -buffer option. Solution: Add the -buffer option.
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 2a76504b42..d4ba7f0ea5 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -141,6 +141,8 @@ EXTERN char e_undefined_variable_str[]
EXTERN char e_undefined_variable_char_str[]
INIT(= N_("E121: Undefined variable: %c:%s"));
#endif
+EXTERN char e_no_such_user_defined_command_str[]
+ INIT(= N_("E184: No such user-defined command: %s"));
#ifndef FEAT_DIGRAPHS
EXTERN char e_no_digraphs_version[]
INIT(= N_("E196: No digraphs in this version"));
@@ -656,3 +658,5 @@ EXTERN char e_function_reference_is_not_set[]
INIT(= N_("E1235: Function reference is not set"));
EXTERN char e_cannot_use_str_itself_it_is_imported_with_star[]
INIT(= N_("E1236: Cannot use %s itself, it is imported with '*'"));
+EXTERN char e_no_such_user_defined_command_in_current_buffer_str[]
+ INIT(= N_("E1237: No such user-defined command in current buffer: %s"));