mirror of
https://github.com/neovim/neovim.git
synced 2025-09-05 19:08:15 +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)
|
||||
global
|
||||
Delay in milliseconds before the autocomplete menu appears after
|
||||
typing. If you prefer it not to open too quickly, set this value
|
||||
slightly above your typing speed. See |ins-autocompletion|.
|
||||
typing. If you prefer it not to open too quickly, set this value
|
||||
slightly above your typing speed. See |ins-autocompletion|.
|
||||
|
||||
*'autoindent'* *'ai'* *'noautoindent'* *'noai'*
|
||||
'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.
|
||||
|
||||
Example: >
|
||||
Pattern: "vim"
|
||||
Candidates: "vim" -> perfect
|
||||
"vimeo" -> good (v i m)
|
||||
"voice mail" -> weaker (v _ i _ _ _ m)
|
||||
"vintage" -> no match (no "m")
|
||||
Pattern: "vim"
|
||||
Candidates: "vim" -> perfect
|
||||
"vimeo" -> good (v i m)
|
||||
"voice mail" -> weaker (v _ i _ _ _ m)
|
||||
"vintage" -> no match (no "m")
|
||||
<
|
||||
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
|
||||
|
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
|
||||
|
||||
--- Delay in milliseconds before the autocomplete menu appears after
|
||||
--- typing. If you prefer it not to open too quickly, set this value
|
||||
--- slightly above your typing speed. See `ins-autocompletion`.
|
||||
--- typing. If you prefer it not to open too quickly, set this value
|
||||
--- slightly above your typing speed. See `ins-autocompletion`.
|
||||
---
|
||||
--- @type integer
|
||||
vim.o.autocompletedelay = 0
|
||||
|
@@ -246,8 +246,8 @@ local options = {
|
||||
defaults = 0,
|
||||
desc = [=[
|
||||
Delay in milliseconds before the autocomplete menu appears after
|
||||
typing. If you prefer it not to open too quickly, set this value
|
||||
slightly above your typing speed. See |ins-autocompletion|.
|
||||
typing. If you prefer it not to open too quickly, set this value
|
||||
slightly above your typing speed. See |ins-autocompletion|.
|
||||
]=],
|
||||
full_name = 'autocompletedelay',
|
||||
scope = { 'global' },
|
||||
|
Reference in New Issue
Block a user