commit 0b888ea039546d5ddbf0b87305f0ea36d4d06997
parent 812186e2dce3775a1d0e5e96960a818be07e59be
Author: zeertzjq <zeertzjq@outlook.com>
Date: Fri, 28 Nov 2025 07:44:03 +0800
vim-patch:b217ffb: runtime(doc): remove outdated help about 'completeopt' "fuzzy"
closes: vim/vim#18815
https://github.com/vim/vim/commit/b217ffbef27c416d6c9b4b7e5a08f61f54013748
Diffstat:
3 files changed, 3 insertions(+), 18 deletions(-)
diff --git 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
@@ -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
@@ -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