diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-26 22:29:11 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-26 22:29:11 +0200 |
commit | d29459baa61819e59961804ed258efac5733ec70 (patch) | |
tree | 11154e516a0d506808a6bb51d77add58af7d6e16 /src/structs.h | |
parent | 257095760732597983bdd026e791907b7980e295 (diff) | |
download | vim-git-d29459baa61819e59961804ed258efac5733ec70.tar.gz |
patch 7.4.2263v7.4.2263
Problem: :filter does not work for many commands. Can only get matching
messages.
Solution: Make :filter work for :command, :map, :list, :number and :print.
Make ":filter!" show non-matching lines.
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index e55922060..e581e4365 100644 --- a/src/structs.h +++ b/src/structs.h @@ -572,6 +572,7 @@ typedef struct char_u *save_ei; /* saved value of 'eventignore' */ # endif regmatch_T filter_regmatch; /* set by :filter /pat/ */ + int filter_force; /* set for :filter! */ } cmdmod_T; #define MF_SEED_LEN 8 |