aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/map.txt
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-06-20 18:47:30 +0200
committerGitHub <noreply@github.com>2022-06-20 18:47:30 +0200
commit7a309311a2c6858c9cd59db47becf4c9baaa9bfe (patch)
tree4a037c0c0c5ff91d6efe422c503b64353d74dce7 /runtime/doc/map.txt
parent99ef06d8467968ac262b875ef840fd0f5415e402 (diff)
downloadrneovim-7a309311a2c6858c9cd59db47becf4c9baaa9bfe.tar.gz
rneovim-7a309311a2c6858c9cd59db47becf4c9baaa9bfe.tar.bz2
rneovim-7a309311a2c6858c9cd59db47becf4c9baaa9bfe.zip
vim-patch:d799daa660b8 (#19031)
Update runtime files https://github.com/vim/vim/commit/d799daa660b8821943cbe1682f00da9e812dd48c
Diffstat (limited to 'runtime/doc/map.txt')
-rw-r--r--runtime/doc/map.txt10
1 files changed, 1 insertions, 9 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt
index 2206d13053..05cf30e078 100644
--- a/runtime/doc/map.txt
+++ b/runtime/doc/map.txt
@@ -345,15 +345,7 @@ Note:
mapping is recursive.
- In Visual mode you can use `line('v')` and `col('v')` to get one end of the
Visual area, the cursor is at the other end.
-- In Select mode, |:map| and |:vmap| command mappings are executed in
- Visual mode. Use |:smap| to handle Select mode differently. One particular
- edge case: >
- :vnoremap <C-K> <Esc>
-< This ends Visual mode when in Visual mode, but in Select mode it does not
- work, because Select mode is restored after executing the mapped keys. You
- need to use: >
- :snoremap <C-K> <Esc>
-<
+
*E5520*
<Cmd> commands must terminate, that is, they must be followed by <CR> in the
{rhs} of the mapping definition. |Command-line| mode is never entered.