Diff to HTML by rtfpessoa

Files changed (3) hide show
  1. runtime/doc/options.txt +19 -2
  2. runtime/doc/version9.txt +3 -1
  3. runtime/doc/vim9.txt +2 -2
runtime/doc/options.txt CHANGED
@@ -1,4 +1,4 @@
1
- *options.txt* For Vim version 9.1. Last change: 2025 Mar 03
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2104,6 +2104,18 @@ A jump table for the options with a short description can be found at |Q_op|.
2104
  This option cannot be set from a |modeline| or in the |sandbox|, for
2105
  security reasons.
2106
 
 
 
 
 
 
 
 
 
 
 
 
 
2107
  *'completeitemalign'* *'cia'*
2108
  'completeitemalign' 'cia' string (default: "abbr,kind,menu")
2109
  global
@@ -2123,7 +2135,12 @@ A jump table for the options with a short description can be found at |Q_op|.
2123
  fuzzy Enable |fuzzy-matching| for completion candidates. This
2124
  allows for more flexible and intuitive matching, where
2125
  characters can be skipped and matches can be found even
2126
- if the exact sequence is not typed.
 
 
 
 
 
2127
 
2128
  longest Only insert the longest common text of the matches. If
2129
  the menu is displayed you can use CTRL-L to add more
1
+ *options.txt* For Vim version 9.1. Last change: 2025 Mar 06
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
2104
  This option cannot be set from a |modeline| or in the |sandbox|, for
2105
  security reasons.
2106
 
2107
+ *'completefuzzycollect'* *'cfc'*
2108
+ 'completefuzzycollect' 'cfc' string (default: empty)
2109
+ global
2110
+ This option enables fuzzy collection for (only some) specific
2111
+ |ins-completion| modes, adjusting how items are gathered for fuzzy
2112
+ matching based on input.
2113
+ The option can contain the following values (separated by commas),
2114
+ each enabling fuzzy collection for a specific completion mode:
2115
+ files file names
2116
+ keyword keyword completion in 'complete' and current file
2117
+ whole_line whole lines
2118
+
2119
  *'completeitemalign'* *'cia'*
2120
  'completeitemalign' 'cia' string (default: "abbr,kind,menu")
2121
  global
2135
  fuzzy Enable |fuzzy-matching| for completion candidates. This
2136
  allows for more flexible and intuitive matching, where
2137
  characters can be skipped and matches can be found even
2138
+ if the exact sequence is not typed. Note: This option
2139
+ does not affect the collection of candidate list, it only
2140
+ controls how completion candidates are reduced from the
2141
+ list of alternatives. If you want to use |fuzzy-matching|
2142
+ to gather more alternatives for your candidate list,
2143
+ see |'completefuzzycollect'|.
2144
 
2145
  longest Only insert the longest common text of the matches. If
2146
  the menu is displayed you can use CTRL-L to add more
runtime/doc/version9.txt CHANGED
@@ -1,4 +1,4 @@
1
- *version9.txt* For Vim version 9.1. Last change: 2025 Mar 03
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41708,6 +41708,8 @@ Commands: ~
41708
 
41709
  Options: ~
41710
 
 
 
41711
  'completeitemalign' Order of |complete-items| in Insert mode completion
41712
  popup
41713
  'eventignorewin' autocommand events that are ignored in a window
1
+ *version9.txt* For Vim version 9.1. Last change: 2025 Mar 06
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
41708
 
41709
  Options: ~
41710
 
41711
+ 'completefuzzycollect' Enable fuzzy collection of candiates for (some)
41712
+ |ins-completion| modes
41713
  'completeitemalign' Order of |complete-items| in Insert mode completion
41714
  popup
41715
  'eventignorewin' autocommand events that are ignored in a window
runtime/doc/vim9.txt CHANGED
@@ -1,4 +1,4 @@
1
- *vim9.txt* For Vim version 9.1. Last change: 2025 Mar 05
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2439,4 +2439,4 @@ support for classes in Vim is then a problem.
2439
 
2440
 
2441
 
2442
- vim:tw=78:ts=8:noet:ft=help:norl:nofen:
1
+ *vim9.txt* For Vim version 9.1. Last change: 2025 Mar 06
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
2439
 
2440
 
2441
 
2442
+ vim:tw=78:ts=8:noet:ft=help:norl: