diff options
author | zeertzjq <zeertzjq@outlook.com> | 2025-03-04 07:04:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-04 07:04:25 +0800 |
commit | 65a3da8b15ffb31ee3cdbc5d651cab7ee36fe884 (patch) | |
tree | 4b5803917e5803e44c483764a16bbec510e6fce7 /runtime/lua/vim/_meta/options.lua | |
parent | e4fb697b69c7307a76d06cf60bb834af2e2cdc5e (diff) | |
download | rneovim-65a3da8b15ffb31ee3cdbc5d651cab7ee36fe884.tar.gz rneovim-65a3da8b15ffb31ee3cdbc5d651cab7ee36fe884.tar.bz2 rneovim-65a3da8b15ffb31ee3cdbc5d651cab7ee36fe884.zip |
vim-patch:659cb28: runtime(doc): fix typo "bet" in :h 'completeopt' (#32711)
closes: vim/vim#16773
https://github.com/vim/vim/commit/659cb28c25b756e59c712c337f8b4650e85f8bcd
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 8e6acecc28..1519beec50 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -1083,15 +1083,15 @@ vim.go.cia = vim.go.completeitemalign --- match, e.g., what file it comes from. --- --- noinsert Do not insert any text for a match until the user selects ---- a match from the menu. Only works in combination with +--- a match from the menu. Only works in combination with --- "menu" or "menuone". No effect if "longest" is present. --- --- noselect Same as "noinsert", except that no menu item is ---- pre-selected. If both "noinsert" and "noselect" are +--- pre-selected. If both "noinsert" and "noselect" are --- present, "noselect" has precedence. --- --- nosort Disable sorting of completion candidates based on fuzzy ---- scores when "fuzzy" is enabled. Candidates will appear +--- scores when "fuzzy" is enabled. Candidates will appear --- in their original order. --- --- popup Show extra information about the currently selected @@ -1102,7 +1102,7 @@ vim.go.cia = vim.go.completeitemalign --- Preinsert the portion of the first candidate word that is --- not part of the current completion leader and using the --- `hl-ComplMatchIns` highlight group. In order for it to ---- work, "fuzzy" must not bet set and "menuone" must be set. +--- work, "fuzzy" must not be set and "menuone" must be set. --- --- preview Show extra information about the currently selected --- completion in the preview window. Only works in |