diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 1068de2eb9..0e952ff036 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -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) diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt index b2cd114471..7590e0c08a 100644 --- a/runtime/doc/pattern.txt +++ b/runtime/doc/pattern.txt @@ -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 diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index ceb72bc44f..58325d2038 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -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 diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 1a1361e2a8..3f2e297f21 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -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' },