mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:1b5f03ec9c55 (#21715)
Update runtime files
1b5f03ec9c
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
parent
87cfe50944
commit
d6cb3328f7
@ -698,8 +698,8 @@ To avoid mapping of the characters you type in insert or Command-line mode,
|
|||||||
type a CTRL-V first. The mapping in Insert mode is disabled if the 'paste'
|
type a CTRL-V first. The mapping in Insert mode is disabled if the 'paste'
|
||||||
option is on.
|
option is on.
|
||||||
*map-error*
|
*map-error*
|
||||||
Note that when an error is encountered (that causes an error message or beep)
|
Note that when an error is encountered (that causes an error message or might
|
||||||
the rest of the mapping is not executed. This is Vi-compatible.
|
cause a beep) the rest of the mapping is not executed. This is Vi-compatible.
|
||||||
|
|
||||||
Note that the second character (argument) of the commands @zZtTfF[]rm'`"v
|
Note that the second character (argument) of the commands @zZtTfF[]rm'`"v
|
||||||
and CTRL-X is not mapped. This was done to be able to use all the named
|
and CTRL-X is not mapped. This was done to be able to use all the named
|
||||||
|
@ -6071,6 +6071,8 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
|
|
||||||
When there is error while evaluating the option then it will be made
|
When there is error while evaluating the option then it will be made
|
||||||
empty to avoid further errors. Otherwise screen updating would loop.
|
empty to avoid further errors. Otherwise screen updating would loop.
|
||||||
|
When the result contains unprintable characters the result is
|
||||||
|
unpredictable.
|
||||||
|
|
||||||
Note that the only effect of 'ruler' when this option is set (and
|
Note that the only effect of 'ruler' when this option is set (and
|
||||||
'laststatus' is 2 or 3) is controlling the output of |CTRL-G|.
|
'laststatus' is 2 or 3) is controlling the output of |CTRL-G|.
|
||||||
|
@ -180,7 +180,16 @@ See |:verbose-cmd| for more information.
|
|||||||
the number 0 is returned.
|
the number 0 is returned.
|
||||||
Note that there is no check for unreachable lines,
|
Note that there is no check for unreachable lines,
|
||||||
thus there is no warning if commands follow ":return".
|
thus there is no warning if commands follow ":return".
|
||||||
|
Also, there is no check if the following
|
||||||
|
line contains a valid command. Forgetting the line
|
||||||
|
continuation backslash may go unnoticed: >
|
||||||
|
return 'some text'
|
||||||
|
.. ' some more text'
|
||||||
|
< Will happily return "some text" without an error. It
|
||||||
|
should have been: >
|
||||||
|
return 'some text'
|
||||||
|
\ .. ' some more text'
|
||||||
|
<
|
||||||
If the ":return" is used after a |:try| but before the
|
If the ":return" is used after a |:try| but before the
|
||||||
matching |:finally| (if present), the commands
|
matching |:finally| (if present), the commands
|
||||||
following the ":finally" up to the matching |:endtry|
|
following the ":finally" up to the matching |:endtry|
|
||||||
|
Loading…
Reference in New Issue
Block a user