diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-10-05 10:56:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 10:56:53 +0200 |
commit | 06f4edc864479fb121d514ec1e7253dba85b740d (patch) | |
tree | 08ebf8e82569a6993b9ae52957437fb9ac2f4dfb /runtime/doc/insert.txt | |
parent | 759259e8af2f6f5e840fcbd687caaaf5f2b9b676 (diff) | |
download | rneovim-06f4edc864479fb121d514ec1e7253dba85b740d.tar.gz rneovim-06f4edc864479fb121d514ec1e7253dba85b740d.tar.bz2 rneovim-06f4edc864479fb121d514ec1e7253dba85b740d.zip |
vim-patch:partial:f269eabc6c4f (#20470)
Update runtime files
https://github.com/vim/vim/commit/f269eabc6c4f5bdcef989cd5b4b95ba8ccaa4d8a
Diffstat (limited to 'runtime/doc/insert.txt')
-rw-r--r-- | runtime/doc/insert.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index 63ceab78a8..792c6ee6f4 100644 --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -650,9 +650,9 @@ When the popup menu is displayed there are a few more special keys, see |popupmenu-keys|. Note: The keys that are valid in CTRL-X mode are not mapped. This allows for -":map ^F ^X^F" to work (where ^F is CTRL-F and ^X is CTRL-X). The key that -ends CTRL-X mode (any key that is not a valid CTRL-X mode command) is mapped. -Also, when doing completion with 'complete' mappings apply as usual. +`:map <C-F> <C-X><C-F>` to work. The key that ends CTRL-X mode (any key that +is not a valid CTRL-X mode command) is mapped. Also, when doing completion +with 'complete' mappings apply as usual. *E565* Note: While completion is active Insert mode can't be used recursively and @@ -661,10 +661,10 @@ will generate an E565 error. The following mappings are suggested to make typing the completion commands a bit easier (although they will hide other commands): > - :inoremap ^] ^X^] - :inoremap ^F ^X^F - :inoremap ^D ^X^D - :inoremap ^L ^X^L + :inoremap <C-]> <C-X><C-]> + :inoremap <C-F> <C-X><C-F> + :inoremap <C-D> <C-X><C-D> + :inoremap <C-L> <C-X><C-L> As a special case, typing CTRL-R to perform register insertion (see |i_CTRL-R|) will not exit CTRL-X mode. This is primarily to allow the use of |