vim-patch:5ca1ea8: runtime(doc): Tweak documentation style

closes: vim/vim#18078

5ca1ea83ad

Co-authored-by: Hirohito Higashi <h.east.727@gmail.com>
This commit is contained in:
zeertzjq
2025-08-22 16:15:36 +08:00
parent 6ef996a082
commit 1c0465bec6
4 changed files with 11 additions and 11 deletions

View File

@@ -751,8 +751,8 @@ A jump table for the options with a short description can be found at |Q_op|.
'autocompletedelay' 'acl' number (default 0) 'autocompletedelay' 'acl' number (default 0)
global global
Delay in milliseconds before the autocomplete menu appears after Delay in milliseconds before the autocomplete menu appears after
typing. If you prefer it not to open too quickly, set this value typing. If you prefer it not to open too quickly, set this value
slightly above your typing speed. See |ins-autocompletion|. slightly above your typing speed. See |ins-autocompletion|.
*'autoindent'* *'ai'* *'noautoindent'* *'noai'* *'autoindent'* *'ai'* *'noautoindent'* *'noai'*
'autoindent' 'ai' boolean (default on) 'autoindent' 'ai' boolean (default on)

View File

@@ -1485,11 +1485,11 @@ Fuzzy matching scores how well a string matches a pattern when the pattern
characters appear in order but not necessarily contiguously. characters appear in order but not necessarily contiguously.
Example: > Example: >
Pattern: "vim" Pattern: "vim"
Candidates: "vim" -> perfect Candidates: "vim" -> perfect
"vimeo" -> good (v i m) "vimeo" -> good (v i m)
"voice mail" -> weaker (v _ i _ _ _ m) "voice mail" -> weaker (v _ i _ _ _ m)
"vintage" -> no match (no "m") "vintage" -> no match (no "m")
< <
If the search string has multiple words, each word is matched separately and If the search string has multiple words, each word is matched separately and
may appear in any order in the candidate. For example "get pat" matches may appear in any order in the candidate. For example "get pat" matches

View File

@@ -121,8 +121,8 @@ vim.go.autocomplete = vim.o.autocomplete
vim.go.ac = vim.go.autocomplete vim.go.ac = vim.go.autocomplete
--- Delay in milliseconds before the autocomplete menu appears after --- Delay in milliseconds before the autocomplete menu appears after
--- typing. If you prefer it not to open too quickly, set this value --- typing. If you prefer it not to open too quickly, set this value
--- slightly above your typing speed. See `ins-autocompletion`. --- slightly above your typing speed. See `ins-autocompletion`.
--- ---
--- @type integer --- @type integer
vim.o.autocompletedelay = 0 vim.o.autocompletedelay = 0

View File

@@ -246,8 +246,8 @@ local options = {
defaults = 0, defaults = 0,
desc = [=[ desc = [=[
Delay in milliseconds before the autocomplete menu appears after Delay in milliseconds before the autocomplete menu appears after
typing. If you prefer it not to open too quickly, set this value typing. If you prefer it not to open too quickly, set this value
slightly above your typing speed. See |ins-autocompletion|. slightly above your typing speed. See |ins-autocompletion|.
]=], ]=],
full_name = 'autocompletedelay', full_name = 'autocompletedelay',
scope = { 'global' }, scope = { 'global' },