0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.3282: Vim9: error about using -complete without -nargs is confusing

Problem:    Vim9: error about using -complete without -nargs is confusing.
Solution:   Change the wording.
This commit is contained in:
Bram Moolenaar
2021-08-04 16:09:24 +02:00
parent 23e2e11515
commit 41a3485dd6
3 changed files with 7 additions and 4 deletions

View File

@@ -595,8 +595,8 @@ EXTERN char e_dict_required_for_argument_nr[]
INIT(= N_("E1206: Dictionary required for argument %d"));
EXTERN char e_expression_without_effect_str[]
INIT(= N_("E1207: Expression without an effect: %s"));
EXTERN char e_complete_used_without_nargs[]
INIT(= N_("E1208: -complete used without -nargs"));
EXTERN char e_complete_used_without_allowing_arguments[]
INIT(= N_("E1208: -complete used without allowing arguments"));
EXTERN char e_invalid_value_for_line_number_str[]
INIT(= N_("E1209: Invalid value for a line number: \"%s\""));
EXTERN char e_number_required_for_argument_nr[]