diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-05-11 14:15:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-05-11 14:15:37 +0100 |
commit | 9af2bc075169e14fd06ed967d28eac7206d21f36 (patch) | |
tree | 9c4228bd6f908932676943b448f81b7e76707d0c /runtime | |
parent | a59f2dfd0cf9ee1a584d3de5b7c2d47648e79060 (diff) | |
download | vim-git-9af2bc075169e14fd06ed967d28eac7206d21f36.tar.gz |
patch 8.2.4939: matchfuzzypos() with "matchseq" does not have all positionsv8.2.4939
Problem: matchfuzzypos() with "matchseq" does not have all positions.
Solution: Also add a position for white space. (closes #10404)
Diffstat (limited to 'runtime')
-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 60fe91f1d..7d62583d6 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -5682,10 +5682,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: |