diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-07-01 14:28:37 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-07-15 23:07:29 -0400 |
commit | d27175aa2879bbc84bb5bb57edf809b7f1da8c7e (patch) | |
tree | 6ba6a7f79ddf3610c5cc2f7ae654093d92d58dee /runtime | |
parent | 5d933310c875908b81ece4f831f72a311f5eb14e (diff) | |
download | rneovim-d27175aa2879bbc84bb5bb57edf809b7f1da8c7e.tar.gz rneovim-d27175aa2879bbc84bb5bb57edf809b7f1da8c7e.tar.bz2 rneovim-d27175aa2879bbc84bb5bb57edf809b7f1da8c7e.zip |
vim-patch:8.1.1221: filtering does not work when listing marks
Problem: Filtering does not work when listing marks.
Solution: Implement filtering marks. (Marcin Szamotulski, closes vim/vim#3895)
https://github.com/vim/vim/commit/ad6dc49a7564a99fca36c1928e3865787d3bd5b2
Diffstat (limited to 'runtime')
-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 63066cef8a..bfb00f74c4 100644 --- a/runtime/doc/various.txt +++ b/runtime/doc/various.txt @@ -359,17 +359,19 @@ g8 Print the hex values of the bytes used in the 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. |