mirror of
https://github.com/neovim/neovim.git
synced 2024-12-26 06:05:06 -07:00
Merge pull request #29362 from neovim/backport-29360-to-release-0.10
docs: document 'list' behavior when 'listchars' excludes "tab"
This commit is contained in:
commit
446b05f85a
@ -3834,6 +3834,9 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
between tabs and spaces and for trailing blanks. Further changed by
|
between tabs and spaces and for trailing blanks. Further changed by
|
||||||
the 'listchars' option.
|
the 'listchars' option.
|
||||||
|
|
||||||
|
When 'listchars' does not contain "tab" field, tabs are shown as "^I"
|
||||||
|
or "<09>", like how unprintable characters are displayed.
|
||||||
|
|
||||||
The cursor is displayed at the start of the space a Tab character
|
The cursor is displayed at the start of the space a Tab character
|
||||||
occupies, not at the end as usual in Normal mode. To get this cursor
|
occupies, not at the end as usual in Normal mode. To get this cursor
|
||||||
position while displaying Tabs with spaces, use: >vim
|
position while displaying Tabs with spaces, use: >vim
|
||||||
|
3
runtime/lua/vim/_meta/options.lua
generated
3
runtime/lua/vim/_meta/options.lua
generated
@ -3820,6 +3820,9 @@ vim.go.lw = vim.go.lispwords
|
|||||||
--- between tabs and spaces and for trailing blanks. Further changed by
|
--- between tabs and spaces and for trailing blanks. Further changed by
|
||||||
--- the 'listchars' option.
|
--- the 'listchars' option.
|
||||||
---
|
---
|
||||||
|
--- When 'listchars' does not contain "tab" field, tabs are shown as "^I"
|
||||||
|
--- or "<09>", like how unprintable characters are displayed.
|
||||||
|
---
|
||||||
--- The cursor is displayed at the start of the space a Tab character
|
--- The cursor is displayed at the start of the space a Tab character
|
||||||
--- occupies, not at the end as usual in Normal mode. To get this cursor
|
--- occupies, not at the end as usual in Normal mode. To get this cursor
|
||||||
--- position while displaying Tabs with spaces, use:
|
--- position while displaying Tabs with spaces, use:
|
||||||
|
@ -4868,6 +4868,9 @@ return {
|
|||||||
between tabs and spaces and for trailing blanks. Further changed by
|
between tabs and spaces and for trailing blanks. Further changed by
|
||||||
the 'listchars' option.
|
the 'listchars' option.
|
||||||
|
|
||||||
|
When 'listchars' does not contain "tab" field, tabs are shown as "^I"
|
||||||
|
or "<09>", like how unprintable characters are displayed.
|
||||||
|
|
||||||
The cursor is displayed at the start of the space a Tab character
|
The cursor is displayed at the start of the space a Tab character
|
||||||
occupies, not at the end as usual in Normal mode. To get this cursor
|
occupies, not at the end as usual in Normal mode. To get this cursor
|
||||||
position while displaying Tabs with spaces, use: >vim
|
position while displaying Tabs with spaces, use: >vim
|
||||||
|
Loading…
Reference in New Issue
Block a user