summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-10-25 13:31:37 +0200
committerBram Moolenaar <Bram@vim.org>2018-10-25 13:31:37 +0200
commitf86db78fed78541cefdb706e4779ce5ae9ca7820 (patch)
tree89b16ab5d0a2847b75bbe3c4ae782a0a03d6626f /runtime
parentbabfcf54ae9bf9570eddf4958a553635cd589e21 (diff)
patch 8.1.0495: :filter only supports some commandsv8.1.0495
Problem: :filter only supports some commands. Solution: Add :filter support for more commands. (Marcin Szamotulski, closes #2856)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/various.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index fce8ba1ece..af49c3e866 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -565,7 +565,18 @@ N *+X11* Unix only: can restore window title |X11|
The pattern is matched against the relevant part of
the output, not necessarily the whole line. Only some
commands support filtering, try it out to check if it
- works.
+ works. Some of the commands that support filtering:
+ |:#| - filter whole line
+ |:command| - filter by command name
+ |:files| - filter by file name
+ |:highlight| - filter by highlight group
+ |:jumps| - filter by file name
+ |:let| - filter by variable name
+ |:list| - filter whole line
+ |:llist| - filter by file name or module name
+ |:oldfiles| - filter by file name
+ |:clist| - filter by file name or module name
+ |:set| - filter by variable name
Only normal messages are filtered, error messages are
not.