diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index e71bb94189..9a2e06ae07 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1610,12 +1610,7 @@ A jump table for the options with a short description can be found at |Q_op|. 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. Note: This option - does not affect the collection of candidate list, it only - controls how completion candidates are reduced from the - list of alternatives. If you want to use |fuzzy-matching| - to gather more alternatives for your candidate list, - see 'completefuzzycollect'. + if the exact sequence is not typed. longest When 'autocomplete' is not active, only the longest common diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 98a0081458..130e296b6c 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -1152,12 +1152,7 @@ vim.go.cia = vim.go.completeitemalign --- 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. Note: This option ---- does not affect the collection of candidate list, it only ---- controls how completion candidates are reduced from the ---- list of alternatives. If you want to use `fuzzy-matching` ---- to gather more alternatives for your candidate list, ---- see 'completefuzzycollect'. +--- if the exact sequence is not typed. --- --- longest --- When 'autocomplete' is not active, only the longest common diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 4bda7b3b15..ec1d5579c6 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1623,12 +1623,7 @@ local options = { 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. Note: This option - does not affect the collection of candidate list, it only - controls how completion candidates are reduced from the - list of alternatives. If you want to use |fuzzy-matching| - to gather more alternatives for your candidate list, - see 'completefuzzycollect'. + if the exact sequence is not typed. longest When 'autocomplete' is not active, only the longest common