mirror of
https://github.com/neovim/neovim.git
synced 2025-11-15 23:01:24 +00:00
Merge pull request #30836 from zeertzjq/vim-4bfb899
vim-patch: doc updates
This commit is contained in:
2
runtime/doc/builtin.txt
generated
2
runtime/doc/builtin.txt
generated
@@ -11705,7 +11705,7 @@ wildmenumode() *wildmenumode()*
|
|||||||
For example to make <c-j> work like <down> in wildmode, use: >vim
|
For example to make <c-j> work like <down> in wildmode, use: >vim
|
||||||
cnoremap <expr> <C-j> wildmenumode() ? "\<Down>\<Tab>" : "\<c-j>"
|
cnoremap <expr> <C-j> wildmenumode() ? "\<Down>\<Tab>" : "\<c-j>"
|
||||||
<
|
<
|
||||||
(Note, this needs the 'wildcharm' option set appropriately).
|
(Note: this needs the 'wildcharm' option set appropriately).
|
||||||
|
|
||||||
Return: ~
|
Return: ~
|
||||||
(`any`)
|
(`any`)
|
||||||
|
|||||||
@@ -6763,7 +6763,9 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
window. This happens only when the 'title' option is on.
|
window. This happens only when the 'title' option is on.
|
||||||
|
|
||||||
When this option contains printf-style '%' items, they will be
|
When this option contains printf-style '%' items, they will be
|
||||||
expanded according to the rules used for 'statusline'.
|
expanded according to the rules used for 'statusline'. If it contains
|
||||||
|
an invalid '%' format, the value is used as-is and no error or warning
|
||||||
|
will be given when the value is set.
|
||||||
This option cannot be set in a modeline when 'modelineexpr' is off.
|
This option cannot be set in a modeline when 'modelineexpr' is off.
|
||||||
|
|
||||||
Example: >vim
|
Example: >vim
|
||||||
|
|||||||
@@ -967,21 +967,24 @@ For example, to profile the one_script.vim script file: >
|
|||||||
|
|
||||||
|
|
||||||
:prof[ile] start {fname} *:prof* *:profile* *E750*
|
:prof[ile] start {fname} *:prof* *:profile* *E750*
|
||||||
Start profiling, write the output in {fname} upon exit.
|
Start profiling, write the output in {fname} upon exit or when
|
||||||
|
a `:profile stop` or `:profile dump` command is invoked.
|
||||||
"~/" and environment variables in {fname} will be expanded.
|
"~/" and environment variables in {fname} will be expanded.
|
||||||
If {fname} already exists it will be silently overwritten.
|
If {fname} already exists it will be silently overwritten.
|
||||||
The variable |v:profiling| is set to one.
|
The variable |v:profiling| is set to one.
|
||||||
|
|
||||||
:prof[ile] stop
|
:prof[ile] stop
|
||||||
Write the logfile and stop profiling.
|
Write the collected profiling information to the logfile and
|
||||||
|
stop profiling. You can use the `:profile start` command to
|
||||||
|
clear the profiling statistics and start profiling again.
|
||||||
|
|
||||||
:prof[ile] pause
|
:prof[ile] pause
|
||||||
Don't profile until the following ":profile continue". Can be
|
Stop profiling until the next `:profile continue` command.
|
||||||
used when doing something that should not be counted (e.g., an
|
Can be used when doing something that should not be counted
|
||||||
external command). Does not nest.
|
(e.g., an external command). Does not nest.
|
||||||
|
|
||||||
:prof[ile] continue
|
:prof[ile] continue
|
||||||
Continue profiling after ":profile pause".
|
Continue profiling after `:profile pause`.
|
||||||
|
|
||||||
:prof[ile] func {pattern}
|
:prof[ile] func {pattern}
|
||||||
Profile function that matches the pattern {pattern}.
|
Profile function that matches the pattern {pattern}.
|
||||||
@@ -999,16 +1002,24 @@ For example, to profile the one_script.vim script file: >
|
|||||||
won't work.
|
won't work.
|
||||||
|
|
||||||
:prof[ile] dump
|
:prof[ile] dump
|
||||||
Don't wait until exiting Vim and write the current state of
|
Write the current state of profiling to the logfile
|
||||||
profiling to the log immediately.
|
immediately. After running this command, Vim continues to
|
||||||
|
collect the profiling statistics.
|
||||||
|
|
||||||
:profd[el] ... *:profd* *:profdel*
|
:profd[el] ... *:profd* *:profdel*
|
||||||
Stop profiling for the arguments specified. See |:breakdel|
|
Stop profiling for the arguments specified. See |:breakdel|
|
||||||
for the arguments.
|
for the arguments. Examples: >
|
||||||
|
profdel func MyFunc
|
||||||
|
profdel file MyScript.vim
|
||||||
|
profdel here
|
||||||
|
|
||||||
You must always start with a ":profile start fname" command. The resulting
|
You must always start with a ":profile start fname" command. The resulting
|
||||||
file is written when Vim exits. Here is an example of the output, with line
|
file is written when Vim exits. For example, to profile one specific
|
||||||
|
function: >
|
||||||
|
profile start /tmp/vimprofile
|
||||||
|
profile func MyFunc
|
||||||
|
|
||||||
|
Here is an example of the output, with line
|
||||||
numbers prepended for the explanation:
|
numbers prepended for the explanation:
|
||||||
|
|
||||||
1 FUNCTION Test2() ~
|
1 FUNCTION Test2() ~
|
||||||
|
|||||||
4
runtime/lua/vim/_meta/options.lua
generated
4
runtime/lua/vim/_meta/options.lua
generated
@@ -7310,7 +7310,9 @@ vim.go.titleold = vim.o.titleold
|
|||||||
--- window. This happens only when the 'title' option is on.
|
--- window. This happens only when the 'title' option is on.
|
||||||
---
|
---
|
||||||
--- When this option contains printf-style '%' items, they will be
|
--- When this option contains printf-style '%' items, they will be
|
||||||
--- expanded according to the rules used for 'statusline'.
|
--- expanded according to the rules used for 'statusline'. If it contains
|
||||||
|
--- an invalid '%' format, the value is used as-is and no error or warning
|
||||||
|
--- will be given when the value is set.
|
||||||
--- This option cannot be set in a modeline when 'modelineexpr' is off.
|
--- This option cannot be set in a modeline when 'modelineexpr' is off.
|
||||||
---
|
---
|
||||||
--- Example:
|
--- Example:
|
||||||
|
|||||||
2
runtime/lua/vim/_meta/vimfn.lua
generated
2
runtime/lua/vim/_meta/vimfn.lua
generated
@@ -10629,7 +10629,7 @@ function vim.fn.wait(timeout, condition, interval) end
|
|||||||
--- For example to make <c-j> work like <down> in wildmode, use: >vim
|
--- For example to make <c-j> work like <down> in wildmode, use: >vim
|
||||||
--- cnoremap <expr> <C-j> wildmenumode() ? "\<Down>\<Tab>" : "\<c-j>"
|
--- cnoremap <expr> <C-j> wildmenumode() ? "\<Down>\<Tab>" : "\<c-j>"
|
||||||
--- <
|
--- <
|
||||||
--- (Note, this needs the 'wildcharm' option set appropriately).
|
--- (Note: this needs the 'wildcharm' option set appropriately).
|
||||||
---
|
---
|
||||||
--- @return any
|
--- @return any
|
||||||
function vim.fn.wildmenumode() end
|
function vim.fn.wildmenumode() end
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
" Vim syntax file
|
" Vim syntax file
|
||||||
" Language: Vim help file
|
" Language: Vim help file
|
||||||
" Maintainer: The Vim Project <https://github.com/vim/vim>
|
" Maintainer: The Vim Project <https://github.com/vim/vim>
|
||||||
" Last Change: 2024 Oct 08
|
" Last Change: 2024 Oct 16
|
||||||
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
|
" Former Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||||
|
|
||||||
" Quit when a (custom) syntax file was already loaded
|
" Quit when a (custom) syntax file was already loaded
|
||||||
@@ -43,7 +43,8 @@ syn match helpOption "'[a-z]\{2,\}'"
|
|||||||
syn match helpOption "'t_..'"
|
syn match helpOption "'t_..'"
|
||||||
syn match helpNormal "'ab'"
|
syn match helpNormal "'ab'"
|
||||||
syn match helpCommand "`[^` \t]\+`"hs=s+1,he=e-1 contains=helpBacktick
|
syn match helpCommand "`[^` \t]\+`"hs=s+1,he=e-1 contains=helpBacktick
|
||||||
syn match helpCommand "\(^\|[^a-z"[]\)\zs`[^`]\+`\ze\([^a-z\t."']\|$\)"hs=s+1,he=e-1 contains=helpBacktick
|
" doesn't allow a . directly after an ending backtick. See :helpgrep `[^`,]\+ [^`,]\+`\.
|
||||||
|
syn match helpCommand "\(^\|[^a-z"[]\)\zs`[^`]\+`\ze\([^a-z\t."']\|[.?!]\?$\)"hs=s+1,he=e-1 contains=helpBacktick
|
||||||
syn match helpHeader "\s*\zs.\{-}\ze\s\=\~$" nextgroup=helpIgnore
|
syn match helpHeader "\s*\zs.\{-}\ze\s\=\~$" nextgroup=helpIgnore
|
||||||
syn match helpGraphic ".* \ze`$" nextgroup=helpIgnore
|
syn match helpGraphic ".* \ze`$" nextgroup=helpIgnore
|
||||||
if has("conceal")
|
if has("conceal")
|
||||||
@@ -52,6 +53,7 @@ else
|
|||||||
syn match helpIgnore "." contained
|
syn match helpIgnore "." contained
|
||||||
endif
|
endif
|
||||||
syn keyword helpNote note Note NOTE note: Note: NOTE: Notes Notes:
|
syn keyword helpNote note Note NOTE note: Note: NOTE: Notes Notes:
|
||||||
|
syn match helpNote "\c(note\(:\|\>\)"ms=s+1
|
||||||
syn keyword helpWarning WARNING WARNING: Warning:
|
syn keyword helpWarning WARNING WARNING: Warning:
|
||||||
syn keyword helpDeprecated DEPRECATED DEPRECATED: Deprecated:
|
syn keyword helpDeprecated DEPRECATED DEPRECATED: Deprecated:
|
||||||
syn match helpSpecial "\<N\>"
|
syn match helpSpecial "\<N\>"
|
||||||
@@ -64,6 +66,10 @@ syn match helpSpecial "\[N]"
|
|||||||
syn match helpSpecial "N N"he=s+1
|
syn match helpSpecial "N N"he=s+1
|
||||||
syn match helpSpecial "Nth"me=e-2
|
syn match helpSpecial "Nth"me=e-2
|
||||||
syn match helpSpecial "N-1"me=e-2
|
syn match helpSpecial "N-1"me=e-2
|
||||||
|
" highlighting N for :resize in windows.txt
|
||||||
|
syn match helpSpecial "] -N\>"ms=s+3
|
||||||
|
syn match helpSpecial "+N\>"ms=s+1
|
||||||
|
syn match helpSpecial "\[+-]N\>"ms=s+4
|
||||||
" highlighting N of cinoptions-values in indent.txt
|
" highlighting N of cinoptions-values in indent.txt
|
||||||
syn match helpSpecial "^\t-\?\zsNs\?\s"me=s+1
|
syn match helpSpecial "^\t-\?\zsNs\?\s"me=s+1
|
||||||
" highlighting N of cinoptions-values in indent.txt
|
" highlighting N of cinoptions-values in indent.txt
|
||||||
@@ -139,7 +145,7 @@ syn match helpUnderlined "\t[* ]Underlined\t\+[a-z].*"
|
|||||||
syn match helpError "\t[* ]Error\t\+[a-z].*"
|
syn match helpError "\t[* ]Error\t\+[a-z].*"
|
||||||
syn match helpTodo "\t[* ]Todo\t\+[a-z].*"
|
syn match helpTodo "\t[* ]Todo\t\+[a-z].*"
|
||||||
|
|
||||||
syn match helpURL `\v<(((https?|ftp|gopher)://|(mailto|file|news):)[^' <>"]+|(www|web|w3)[a-z0-9_-]*\.[a-z0-9._-]+\.[^' <>"]+)[a-zA-Z0-9/]`
|
syn match helpURL `\v<(((https?|ftp|gopher)://|(mailto|file|news):)[^'" \t<>{}]+|(www|web|w3)[a-z0-9_-]*\.[a-z0-9._-]+\.[^'" \t<>{}]+)[a-zA-Z0-9/]`
|
||||||
|
|
||||||
syn match helpDiffAdded "\t[* ]Added\t\+[a-z].*"
|
syn match helpDiffAdded "\t[* ]Added\t\+[a-z].*"
|
||||||
syn match helpDiffChanged "\t[* ]Changed\t\+[a-z].*"
|
syn match helpDiffChanged "\t[* ]Changed\t\+[a-z].*"
|
||||||
@@ -151,16 +157,6 @@ if s:i > 0
|
|||||||
exe "runtime syntax/help_" . strpart(expand("%"), s:i + 1, 2) . ".vim"
|
exe "runtime syntax/help_" . strpart(expand("%"), s:i + 1, 2) . ".vim"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Italian
|
|
||||||
if v:lang =~ '\<IT\>' || v:lang =~ '_IT\>' || v:lang =~? "italian"
|
|
||||||
syn keyword helpNote nota Nota NOTA nota: Nota: NOTA: notare Notare NOTARE notare: Notare: NOTARE:
|
|
||||||
syn match helpSpecial "Nma"me=e-2
|
|
||||||
syn match helpSpecial "Nme"me=e-2
|
|
||||||
syn match helpSpecial "Nmi"me=e-2
|
|
||||||
syn match helpSpecial "Nmo"me=e-2
|
|
||||||
syn match helpSpecial "\[interv.]"
|
|
||||||
endif
|
|
||||||
|
|
||||||
syn sync minlines=40
|
syn sync minlines=40
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
17
runtime/syntax/help_it.vim
Normal file
17
runtime/syntax/help_it.vim
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
" Vim syntax file
|
||||||
|
" Language: Italian Vim program help files *.itx
|
||||||
|
" Maintainer: The Vim Project <https://github.com/vim/vim>
|
||||||
|
" Last Change: 2024 Oct 16
|
||||||
|
"
|
||||||
|
" This script is sourced from syntax/help.vim.
|
||||||
|
|
||||||
|
syn keyword helpNote nota Nota NOTA nota: Nota: NOTA: notare Notare NOTARE notare: Notare: NOTARE:
|
||||||
|
syn match helpNote "\c(nota\(:\|\>\)"ms=s+1
|
||||||
|
syn match helpSpecial "Nma"me=e-2
|
||||||
|
syn match helpSpecial "Nme"me=e-2
|
||||||
|
syn match helpSpecial "Nmi"me=e-2
|
||||||
|
syn match helpSpecial "Nmo"me=e-2
|
||||||
|
syn match helpSpecial "\[interv.]"
|
||||||
|
syn region helpNotVi start="{non" start="{solo" start="{disponibile" end="}" contains=helpLeadBlank,helpHyperTextJump
|
||||||
|
|
||||||
|
" vim: ts=8 sw=2
|
||||||
@@ -12768,7 +12768,7 @@ M.funcs = {
|
|||||||
For example to make <c-j> work like <down> in wildmode, use: >vim
|
For example to make <c-j> work like <down> in wildmode, use: >vim
|
||||||
cnoremap <expr> <C-j> wildmenumode() ? "\<Down>\<Tab>" : "\<c-j>"
|
cnoremap <expr> <C-j> wildmenumode() ? "\<Down>\<Tab>" : "\<c-j>"
|
||||||
<
|
<
|
||||||
(Note, this needs the 'wildcharm' option set appropriately).
|
(Note: this needs the 'wildcharm' option set appropriately).
|
||||||
]=],
|
]=],
|
||||||
name = 'wildmenumode',
|
name = 'wildmenumode',
|
||||||
params = {},
|
params = {},
|
||||||
|
|||||||
@@ -9130,7 +9130,9 @@ return {
|
|||||||
window. This happens only when the 'title' option is on.
|
window. This happens only when the 'title' option is on.
|
||||||
|
|
||||||
When this option contains printf-style '%' items, they will be
|
When this option contains printf-style '%' items, they will be
|
||||||
expanded according to the rules used for 'statusline'.
|
expanded according to the rules used for 'statusline'. If it contains
|
||||||
|
an invalid '%' format, the value is used as-is and no error or warning
|
||||||
|
will be given when the value is set.
|
||||||
This option cannot be set in a modeline when 'modelineexpr' is off.
|
This option cannot be set in a modeline when 'modelineexpr' is off.
|
||||||
|
|
||||||
Example: >vim
|
Example: >vim
|
||||||
|
|||||||
Reference in New Issue
Block a user