summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-23 18:02:32 +0200
committerBram Moolenaar <Bram@vim.org>2020-10-23 18:02:32 +0200
commitf4c6e1e75c2a7f2ca3a7f4529e7da31dc98557e9 (patch)
treeb262a566cdf9409c9dd92a8381731f590fd9d8c3 /src/structs.h
parent8ded5b647aa4b3338da721b343e0bce0f86655f6 (diff)
downloadvim-git-f4c6e1e75c2a7f2ca3a7f4529e7da31dc98557e9.tar.gz
patch 8.2.1894: Vim9: command modifiers are not supportedv8.2.1894
Problem: Vim9: command modifiers are not supported. Solution: Support "silent" and "silent!".
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index eb86e484e..f01598e7a 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -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