summaryrefslogtreecommitdiffstats
path: root/runtime/doc/map.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-26 17:00:44 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-26 17:00:44 +0200
commit2547aa930b59f5e2bcb70e81d5a57ed461e59b4f (patch)
tree83dd4b387047f169ffffaed3585271574278c5c5 /runtime/doc/map.txt
parentd3bb6a82a51d549bbd597bb4e94d8f074009be2a (diff)
Update runtime files.
Diffstat (limited to 'runtime/doc/map.txt')
-rw-r--r--runtime/doc/map.txt9
1 files changed, 4 insertions, 5 deletions
diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt
index c142f231b5..0ad43d449b 100644
--- a/runtime/doc/map.txt
+++ b/runtime/doc/map.txt
@@ -843,11 +843,10 @@ When modifyOtherKeys is enabled you can map <C-[> and <C-S-{>: >
imap <C-S-{> {{{
Without modifyOtherKeys <C-[> and <C-S-{> are indistinguishable from Esc.
-A known side effect effect is that in Insert mode the raw escape sequence is
-inserted after the CTRL-V key. This can be used to check whether
-modifyOtherKeys is enabled: In Insert mode type CTRL-SHIFT-V CTRL-V, if you
-get one byte then modifyOtherKeys is off, if you get <1b>27;5;118~ then it is
-on.
+A known side effect is that in Insert mode the raw escape sequence is inserted
+after the CTRL-V key. This can be used to check whether modifyOtherKeys is
+enabled: In Insert mode type CTRL-SHIFT-V CTRL-V, if you get one byte then
+modifyOtherKeys is off, if you get <1b>27;5;118~ then it is on.
When the 'esckeys' option is off, then modifyOtherKeys will be disabled in
Insert mode to avoid every key with a modifier causing Insert mode to end.