diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/options.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 64a3307f46..aa43c4cf3d 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1458,7 +1458,10 @@ return { fuzzy Enable |fuzzy-matching| for completion candidates. This allows for more flexible and intuitive matching, where characters can be skipped and matches can be found even - if the exact sequence is not typed. + if the exact sequence is not typed. Only makes a + difference how completion candidates are reduced from the + list of alternatives, but not how the candidates are + collected (using different completion types). ]=], expand_cb = 'expand_set_completeopt', full_name = 'completeopt', |