1
0
forked from aniani/vim

patch 8.2.1894: Vim9: command modifiers are not supported

Problem:    Vim9: command modifiers are not supported.
Solution:   Support "silent" and "silent!".
This commit is contained in:
Bram Moolenaar
2020-10-23 18:02:32 +02:00
parent 8ded5b647a
commit f4c6e1e75c
8 changed files with 120 additions and 3 deletions

View File

@@ -643,6 +643,8 @@ typedef struct
char_u *save_ei; // saved value of 'eventignore'
regmatch_T filter_regmatch; // set by :filter /pat/
int filter_force; // set for :filter!
int msg_silent; // TRUE when ":silent" was used
int emsg_silent; // TRUE when ":silent!" was used
} cmdmod_T;
#define MF_SEED_LEN 8