File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 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
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -667,7 +667,7 @@ When the popup menu is displayed there are a few more special keys, see
667
667
| popupmenu-keys | .
668
668
669
669
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
671
671
ends CTRL-X mode (any key that is not a valid CTRL-X mode command) is mapped.
672
672
Also, when doing completion with 'complete' mappings apply as usual.
673
673
@@ -677,11 +677,12 @@ buffer text cannot be changed. Mappings that somehow invoke ":normal i.."
677
677
will generate an E565 error.
678
678
679
679
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>
685
686
686
687
As a special case, typing CTRL-R to perform register insertion (see
687
688
| i_CTRL-R | ) will not exit CTRL-X mode. This is primarily to allow the use of
You can’t perform that action at this time.
0 commit comments