mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #29606 from zeertzjq/vim-b9bbf1f04439
vim-patch: documentation updates
This commit is contained in:
commit
51ef445c15
1
runtime/doc/builtin.txt
generated
1
runtime/doc/builtin.txt
generated
@ -7063,6 +7063,7 @@ sign_define({list})
|
|||||||
icon full path to the bitmap file for the sign.
|
icon full path to the bitmap file for the sign.
|
||||||
linehl highlight group used for the whole line the
|
linehl highlight group used for the whole line the
|
||||||
sign is placed in.
|
sign is placed in.
|
||||||
|
priority default priority value of the sign
|
||||||
numhl highlight group used for the line number where
|
numhl highlight group used for the line number where
|
||||||
the sign is placed.
|
the sign is placed.
|
||||||
text text that is displayed when there is no icon
|
text text that is displayed when there is no icon
|
||||||
|
@ -196,10 +196,12 @@ tag char note action in Normal mode ~
|
|||||||
|<Tab>| <Tab> 1 go to N newer entry in jump list
|
|<Tab>| <Tab> 1 go to N newer entry in jump list
|
||||||
|CTRL-I| CTRL-I 1 same as <Tab>
|
|CTRL-I| CTRL-I 1 same as <Tab>
|
||||||
|<NL>| <NL> 1 same as "j"
|
|<NL>| <NL> 1 same as "j"
|
||||||
|
|<S-NL>| <S-NL> 1 same as CTRL-F
|
||||||
|CTRL-J| CTRL-J 1 same as "j"
|
|CTRL-J| CTRL-J 1 same as "j"
|
||||||
CTRL-K not used
|
CTRL-K not used
|
||||||
|CTRL-L| CTRL-L redraw screen
|
|CTRL-L| CTRL-L redraw screen
|
||||||
|<CR>| <CR> 1 cursor to the first CHAR N lines lower
|
|<CR>| <CR> 1 cursor to the first CHAR N lines lower
|
||||||
|
|<S-CR>| <S-CR> 1 same as CTRL-F
|
||||||
|CTRL-M| CTRL-M 1 same as <CR>
|
|CTRL-M| CTRL-M 1 same as <CR>
|
||||||
|CTRL-N| CTRL-N 1 same as "j"
|
|CTRL-N| CTRL-N 1 same as "j"
|
||||||
|CTRL-O| CTRL-O 1 go to N older entry in jump list
|
|CTRL-O| CTRL-O 1 go to N older entry in jump list
|
||||||
@ -272,9 +274,11 @@ tag char note action in Normal mode ~
|
|||||||
|star| * 1 search forward for the Nth occurrence of
|
|star| * 1 search forward for the Nth occurrence of
|
||||||
the ident under the cursor
|
the ident under the cursor
|
||||||
|+| + 1 same as <CR>
|
|+| + 1 same as <CR>
|
||||||
|
|<S-Plus>| <S-+> 1 same as CTRL-F
|
||||||
|,| , 1 repeat latest f, t, F or T in opposite
|
|,| , 1 repeat latest f, t, F or T in opposite
|
||||||
direction N times
|
direction N times
|
||||||
|-| - 1 cursor to the first CHAR N lines higher
|
|-| - 1 cursor to the first CHAR N lines higher
|
||||||
|
|<S-Minus>| <S--> 1 same as CTRL-B
|
||||||
|.| . 2 repeat last change with count replaced with
|
|.| . 2 repeat last change with count replaced with
|
||||||
N
|
N
|
||||||
|/| /{pattern}<CR> 1 search forward for the Nth occurrence of
|
|/| /{pattern}<CR> 1 search forward for the Nth occurrence of
|
||||||
|
@ -752,6 +752,21 @@ will be classified as tcsh, UNLESS the "filetype_csh" variable exists. If the
|
|||||||
"filetype_csh" variable exists, the filetype will be set to the value of the
|
"filetype_csh" variable exists, the filetype will be set to the value of the
|
||||||
variable.
|
variable.
|
||||||
|
|
||||||
|
CSV *ft-csv-syntax*
|
||||||
|
|
||||||
|
If you change the delimiter of the CSV file, the syntax highlighting will be
|
||||||
|
now longer match the changed file content. You will need to unlet the
|
||||||
|
following variable: >
|
||||||
|
|
||||||
|
:unlet b:csv_delimiter
|
||||||
|
|
||||||
|
And afterwards save and reload the file: >
|
||||||
|
|
||||||
|
:w
|
||||||
|
:e
|
||||||
|
|
||||||
|
Now the syntax engine should determine the newly changed csv delimiter.
|
||||||
|
|
||||||
|
|
||||||
CYNLIB *cynlib.vim* *ft-cynlib-syntax*
|
CYNLIB *cynlib.vim* *ft-cynlib-syntax*
|
||||||
|
|
||||||
|
1
runtime/lua/vim/_meta/vimfn.lua
generated
1
runtime/lua/vim/_meta/vimfn.lua
generated
@ -8427,6 +8427,7 @@ function vim.fn.sign_define(name, dict) end
|
|||||||
--- icon full path to the bitmap file for the sign.
|
--- icon full path to the bitmap file for the sign.
|
||||||
--- linehl highlight group used for the whole line the
|
--- linehl highlight group used for the whole line the
|
||||||
--- sign is placed in.
|
--- sign is placed in.
|
||||||
|
--- priority default priority value of the sign
|
||||||
--- numhl highlight group used for the line number where
|
--- numhl highlight group used for the line number where
|
||||||
--- the sign is placed.
|
--- the sign is placed.
|
||||||
--- text text that is displayed when there is no icon
|
--- text text that is displayed when there is no icon
|
||||||
|
@ -10057,6 +10057,7 @@ M.funcs = {
|
|||||||
icon full path to the bitmap file for the sign.
|
icon full path to the bitmap file for the sign.
|
||||||
linehl highlight group used for the whole line the
|
linehl highlight group used for the whole line the
|
||||||
sign is placed in.
|
sign is placed in.
|
||||||
|
priority default priority value of the sign
|
||||||
numhl highlight group used for the line number where
|
numhl highlight group used for the line number where
|
||||||
the sign is placed.
|
the sign is placed.
|
||||||
text text that is displayed when there is no icon
|
text text that is displayed when there is no icon
|
||||||
|
Loading…
Reference in New Issue
Block a user