mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
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:
@@ -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)
|
||||||
|
@@ -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
|
||||||
|
4
runtime/lua/vim/_meta/options.lua
generated
4
runtime/lua/vim/_meta/options.lua
generated
@@ -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
|
||||||
|
@@ -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' },
|
||||||
|
Reference in New Issue
Block a user