Skip to content

Commit d620a38

Browse files
committed
insert.txt: Update Vim 9.0.0752
1 parent fb88d19 commit d620a38

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

en/insert.txt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*insert.txt* For Vim version 9.0. Last change: 2022 Apr 06
1+
*insert.txt* For Vim version 9.0. Last change: 2022 Sep 30
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -667,7 +667,7 @@ When the popup menu is displayed there are a few more special keys, see
667667
|popupmenu-keys|.
668668

669669
Note: The keys that are valid in CTRL-X mode are not mapped. This allows for
670-
":map ^F ^X^F" to work (where ^F is CTRL-F and ^X is CTRL-X). The key that
670+
`:map <C-F> <C-X><C-F>` to work (assuming "<" is not in 'cpo'). The key that
671671
ends CTRL-X mode (any key that is not a valid CTRL-X mode command) is mapped.
672672
Also, when doing completion with 'complete' mappings apply as usual.
673673

@@ -677,11 +677,12 @@ buffer text cannot be changed. Mappings that somehow invoke ":normal i.."
677677
will generate an E565 error.
678678

679679
The following mappings are suggested to make typing the completion commands
680-
a bit easier (although they will hide other commands): >
681-
:inoremap ^] ^X^]
682-
:inoremap ^F ^X^F
683-
:inoremap ^D ^X^D
684-
:inoremap ^L ^X^L
680+
a bit easier (although they will hide other commands; this requires "<" is not
681+
in 'cpo'): >
682+
:inoremap <C-]> <C-X><C-]>
683+
:inoremap <C-F> <C-X><C-F>
684+
:inoremap <C-D> <C-X><C-D>
685+
:inoremap <C-L> <C-X><C-L>
685686
686687
As a special case, typing CTRL-R to perform register insertion (see
687688
|i_CTRL-R|) will not exit CTRL-X mode. This is primarily to allow the use of

0 commit comments

Comments
 (0)