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

patch 9.0.0390: cannot use a partial with :defer

Problem:    Cannot use a partial with :defer.
Solution:   Add the partial arguments before the other arguments.  Disallow
            using a dictionary.
This commit is contained in:
Bram Moolenaar
2022-09-05 21:21:25 +01:00
parent ccfde4d028
commit 86d87256c4
4 changed files with 57 additions and 5 deletions

View File

@@ -3326,3 +3326,7 @@ EXTERN char e_non_null_list_required_for_argument_nr[]
#endif
EXTERN char e_window_unexpectedly_close_while_searching_for_tags[]
INIT(= N_("E1299: Window unexpectedly closed while searching for tags"));
#ifdef FEAT_EVAL
EXTERN char e_cannot_use_partial_with_dictionary_for_defer[]
INIT(= N_("E1300: Cannot use a partial with dictionary for :defer"));
#endif