diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-27 22:40:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-27 22:40:08 +0200 |
commit | ad6dc49a7564a99fca36c1928e3865787d3bd5b2 (patch) | |
tree | 11ada58be7c19a0e612e899fc22b3526371aca68 /runtime/doc | |
parent | 0ee1bdff7d34df5fb764a2af15594f9da34a47cc (diff) | |
download | vim-git-ad6dc49a7564a99fca36c1928e3865787d3bd5b2.tar.gz |
patch 8.1.1221: filtering does not work when listing marksv8.1.1221
Problem: Filtering does not work when listing marks.
Solution: Implement filtering marks. (Marcin Szamotulski, closes #3895)
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/various.txt | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt index 923ac240f..8b4f988ee 100644 --- a/runtime/doc/various.txt +++ b/runtime/doc/various.txt @@ -571,17 +571,19 @@ N *+X11* Unix only: can restore window title |X11| the output, not necessarily the whole line. Only some commands support filtering, try it out to check if it 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 + |:#| - filter whole line + |:clist| - filter by file name or module name + |: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 + |:marks| - filter by text in the current file, + or file name for other files + |:oldfiles| - filter by file name + |:set| - filter by variable name Only normal messages are filtered, error messages are not. |