diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-05-11 21:51:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-11 21:51:31 +0800 |
commit | e36e0f7b2fde4f28c2e5d1a929c2464029668c86 (patch) | |
tree | 7ab4cf3fb43cffd7dbd2a5c406ede562d3471167 /runtime/doc | |
parent | b13089c9569e8c61d644c2e50eee747aa2fbb9ef (diff) | |
download | rneovim-e36e0f7b2fde4f28c2e5d1a929c2464029668c86.tar.gz rneovim-e36e0f7b2fde4f28c2e5d1a929c2464029668c86.tar.bz2 rneovim-e36e0f7b2fde4f28c2e5d1a929c2464029668c86.zip |
vim-patch:8.2.4939: matchfuzzypos() with "matchseq" does not have all positions (#18525)
Problem: matchfuzzypos() with "matchseq" does not have all positions.
Solution: Also add a position for white space. (closes vim/vim#10404)
https://github.com/vim/vim/commit/9af2bc075169e14fd06ed967d28eac7206d21f36
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/builtin.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index 67989cb49f..3f0d0770bf 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -4976,10 +4976,9 @@ matchfuzzy({list}, {str} [, {dict}]) *matchfuzzy()* The optional {dict} argument always supports the following items: - matchseq When this item is present and {str} contains - multiple words separated by white space, then - returns only matches that contain the words in - the given sequence. + matchseq When this item is present return only matches + that contain the characters in {str} in the + given sequence. If {list} is a list of dictionaries, then the optional {dict} argument supports the following additional items: |