mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
vim-patch:partial:8f7256a (#34368)
vim-patch:partial:8f7256a: runtime(doc): fix some style issues and remove obsolete docs
8f7256a5ee
Co-authored-by: Hirohito Higashi <h.east.727@gmail.com>
This commit is contained in:
@@ -6464,8 +6464,8 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
'tabstop' 'ts' number (default 8)
|
'tabstop' 'ts' number (default 8)
|
||||||
local to buffer
|
local to buffer
|
||||||
Defines the column multiple used to display the Horizontal Tab
|
Defines the column multiple used to display the Horizontal Tab
|
||||||
character (ASCII 9); a Horizontal Tab always advances to the next
|
character (ASCII 9); a Horizontal Tab always advances to the next tab
|
||||||
tab stop.
|
stop.
|
||||||
The value must be at least 1 and at most 9999.
|
The value must be at least 1 and at most 9999.
|
||||||
If |'vartabstop'| is set, this option is ignored.
|
If |'vartabstop'| is set, this option is ignored.
|
||||||
Leave it at 8 unless you have a strong reason (see usr |30.5|).
|
Leave it at 8 unless you have a strong reason (see usr |30.5|).
|
||||||
|
@@ -1278,8 +1278,8 @@ complete_match([{lnum}, {col}]) *complete_match()*
|
|||||||
or empty string if no match was found or when using the
|
or empty string if no match was found or when using the
|
||||||
default 'iskeyword' pattern.
|
default 'iskeyword' pattern.
|
||||||
|
|
||||||
When 'isexpand' is empty, uses the 'iskeyword' pattern
|
When 'isexpand' is empty, uses the 'iskeyword' pattern "\k\+$"
|
||||||
"\k\+$" to find the start of the current keyword.
|
to find the start of the current keyword.
|
||||||
|
|
||||||
Examples: >vim
|
Examples: >vim
|
||||||
set isexpand=.,->,/,/*,abc
|
set isexpand=.,->,/,/*,abc
|
||||||
|
4
runtime/lua/vim/_meta/options.lua
generated
4
runtime/lua/vim/_meta/options.lua
generated
@@ -6962,8 +6962,8 @@ vim.go.tabpagemax = vim.o.tabpagemax
|
|||||||
vim.go.tpm = vim.go.tabpagemax
|
vim.go.tpm = vim.go.tabpagemax
|
||||||
|
|
||||||
--- Defines the column multiple used to display the Horizontal Tab
|
--- Defines the column multiple used to display the Horizontal Tab
|
||||||
--- character (ASCII 9); a Horizontal Tab always advances to the next
|
--- character (ASCII 9); a Horizontal Tab always advances to the next tab
|
||||||
--- tab stop.
|
--- stop.
|
||||||
--- The value must be at least 1 and at most 9999.
|
--- The value must be at least 1 and at most 9999.
|
||||||
--- If `'vartabstop'` is set, this option is ignored.
|
--- If `'vartabstop'` is set, this option is ignored.
|
||||||
--- Leave it at 8 unless you have a strong reason (see usr `30.5`).
|
--- Leave it at 8 unless you have a strong reason (see usr `30.5`).
|
||||||
|
4
runtime/lua/vim/_meta/vimfn.lua
generated
4
runtime/lua/vim/_meta/vimfn.lua
generated
@@ -1123,8 +1123,8 @@ function vim.fn.complete_info(what) end
|
|||||||
--- or empty string if no match was found or when using the
|
--- or empty string if no match was found or when using the
|
||||||
--- default 'iskeyword' pattern.
|
--- default 'iskeyword' pattern.
|
||||||
---
|
---
|
||||||
--- When 'isexpand' is empty, uses the 'iskeyword' pattern
|
--- When 'isexpand' is empty, uses the 'iskeyword' pattern "\k\+$"
|
||||||
--- "\k\+$" to find the start of the current keyword.
|
--- to find the start of the current keyword.
|
||||||
---
|
---
|
||||||
--- Examples: >vim
|
--- Examples: >vim
|
||||||
--- set isexpand=.,->,/,/*,abc
|
--- set isexpand=.,->,/,/*,abc
|
||||||
|
@@ -1495,8 +1495,8 @@ M.funcs = {
|
|||||||
or empty string if no match was found or when using the
|
or empty string if no match was found or when using the
|
||||||
default 'iskeyword' pattern.
|
default 'iskeyword' pattern.
|
||||||
|
|
||||||
When 'isexpand' is empty, uses the 'iskeyword' pattern
|
When 'isexpand' is empty, uses the 'iskeyword' pattern "\k\+$"
|
||||||
"\k\+$" to find the start of the current keyword.
|
to find the start of the current keyword.
|
||||||
|
|
||||||
Examples: >vim
|
Examples: >vim
|
||||||
set isexpand=.,->,/,/*,abc
|
set isexpand=.,->,/,/*,abc
|
||||||
|
@@ -9088,8 +9088,8 @@ local options = {
|
|||||||
defaults = 8,
|
defaults = 8,
|
||||||
desc = [=[
|
desc = [=[
|
||||||
Defines the column multiple used to display the Horizontal Tab
|
Defines the column multiple used to display the Horizontal Tab
|
||||||
character (ASCII 9); a Horizontal Tab always advances to the next
|
character (ASCII 9); a Horizontal Tab always advances to the next tab
|
||||||
tab stop.
|
stop.
|
||||||
The value must be at least 1 and at most 9999.
|
The value must be at least 1 and at most 9999.
|
||||||
If |'vartabstop'| is set, this option is ignored.
|
If |'vartabstop'| is set, this option is ignored.
|
||||||
Leave it at 8 unless you have a strong reason (see usr |30.5|).
|
Leave it at 8 unless you have a strong reason (see usr |30.5|).
|
||||||
|
Reference in New Issue
Block a user