diff options
author | zeertzjq <zeertzjq@outlook.com> | 2025-03-09 16:13:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-09 16:13:56 +0800 |
commit | 2a53ccdb42a1878a246d8ceca48ef50163931198 (patch) | |
tree | bcf8d14880cd34e06ef4b3b1df0add5233773c04 | |
parent | 5ee62906a336b36bd868b5dda70037dc02525b15 (diff) | |
parent | 5763dccafae17d0f25f17c4829181321abba9cf6 (diff) | |
download | rneovim-2a53ccdb42a1878a246d8ceca48ef50163931198.tar.gz rneovim-2a53ccdb42a1878a246d8ceca48ef50163931198.tar.bz2 rneovim-2a53ccdb42a1878a246d8ceca48ef50163931198.zip |
Merge pull request #32797 from zeertzjq/vim-3d1a437
vim-patch:{3d1a437,d89770e}
-rw-r--r-- | runtime/doc/cmdline.txt | 4 | ||||
-rw-r--r-- | runtime/doc/insert.txt | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt index 3fc17af185..45a95e439a 100644 --- a/runtime/doc/cmdline.txt +++ b/runtime/doc/cmdline.txt @@ -83,6 +83,10 @@ CTRL-Q Same as CTRL-V. But with some terminals it is used for CTRL-SHIFT-V *c_CTRL-SHIFT-V* *c_CTRL-SHIFT-Q* CTRL-SHIFT-Q Works just like CTRL-V, but do not try to include the CTRL modifier into the key. + Note: When CTRL-SHIFT-V is intercepted by your system (e.g., + to paste text) you can often use CTRL-SHIFT-Q instead. + However, in some terminals (e.g. GNOME Terminal), CTRL-SHIFT-Q + quits the terminal without confirmation. *c_<Left>* *c_Left* <Left> cursor left. See 'wildmenu' for behavior during wildmenu diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index 06f1a4e73d..a39f475b4b 100644 --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -212,6 +212,10 @@ CTRL-Q Same as CTRL-V. CTRL-SHIFT-V *i_CTRL-SHIFT-V* *i_CTRL-SHIFT-Q* CTRL-SHIFT-Q Works just like CTRL-V, but do not try to include the CTRL modifier into the key. + Note: When CTRL-SHIFT-V is intercepted by your system (e.g., + to paste text) you can often use CTRL-SHIFT-Q instead. + However, in some terminals (e.g. GNOME Terminal), CTRL-SHIFT-Q + quits the terminal without confirmation. CTRL-X Enter CTRL-X mode. This is a sub-mode where commands can be given to complete words or scroll the window. See |