aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-06-27 03:19:01 +0000
committerGitHub <noreply@github.com>2017-06-27 03:19:01 +0000
commit91749c06dcc7e5119be097238a6e20fe829c8cc8 (patch)
tree11ff5884cd35e9dfd6d37044fb277fb1a428d15e /runtime
parentf34befe74c5a7b18a802f6f3c79607cb2124004c (diff)
parent6a842132bcecb0d255fabf937694d1abfde1c86d (diff)
downloadrneovim-91749c06dcc7e5119be097238a6e20fe829c8cc8.tar.gz
rneovim-91749c06dcc7e5119be097238a6e20fe829c8cc8.tar.bz2
rneovim-91749c06dcc7e5119be097238a6e20fe829c8cc8.zip
Merge pull request #6927 from jamessan/vim-7.4.2259
vim-patch:7.4.2259,7.4.2268,7.4.2318,7.4.2320
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/cmdline.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt
index 948c921431..d870a72600 100644
--- a/runtime/doc/cmdline.txt
+++ b/runtime/doc/cmdline.txt
@@ -389,12 +389,26 @@ CTRL-L A match is done on the pattern in front of the cursor. If
If there are multiple matches the longest common part is
inserted in place of the pattern. If the result is shorter
than the pattern, no completion is done.
+ */_CTRL-L*
When 'incsearch' is set, entering a search pattern for "/" or
"?" and the current match is displayed then CTRL-L will add
one character from the end of the current match. If
'ignorecase' and 'smartcase' are set and the command line has
no uppercase characters, the added character is converted to
lowercase.
+ *c_CTRL-G* */_CTRL-G*
+CTRL-G When 'incsearch' is set, entering a search pattern for "/" or
+ "?" and the current match is displayed then CTRL-G will move
+ to the next match (does not take |search-offset| into account)
+ Use CTRL-T to move to the previous match. Hint: on a regular
+ keyboard T is above G.
+ *c_CTRL-T* */_CTRL-T*
+CTRL-T When 'incsearch' is set, entering a search pattern for "/" or
+ "?" and the current match is displayed then CTRL-T will move
+ to the previous match (does not take |search-offset| into
+ account).
+ Use CTRL-G to move to the next match. Hint: on a regular
+ keyboard T is above G.
The 'wildchar' option defaults to <Tab> (CTRL-E when in Vi compatible mode; in
a previous version <Esc> was used). In the pattern standard wildcards '*' and