From f4c6e1e75c2a7f2ca3a7f4529e7da31dc98557e9 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 23 Oct 2020 18:02:32 +0200 Subject: patch 8.2.1894: Vim9: command modifiers are not supported Problem: Vim9: command modifiers are not supported. Solution: Support "silent" and "silent!". --- src/structs.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/structs.h') 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 -- cgit v1.2.1