aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorraichoo <raichoo@googlemail.com>2017-03-25 14:09:31 +0100
committerJames McCoy <jamessan@jamessan.com>2017-06-26 07:36:36 -0400
commit7955cf35158f56a207ece32127adece23fd0fba1 (patch)
treef6ed4f3b7d2006b245302fdf80bb7c81e9dd29c2 /runtime
parent2b377d89dbe4174a74e021ffe4e8b86d0d729d0e (diff)
downloadrneovim-7955cf35158f56a207ece32127adece23fd0fba1.tar.gz
rneovim-7955cf35158f56a207ece32127adece23fd0fba1.tar.bz2
rneovim-7955cf35158f56a207ece32127adece23fd0fba1.zip
vim-patch:7.4.2259
Problem: With 'incsearch' can only see the next match. Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian Brabandt) https://github.com/vim/vim/commit/4d6f32cbfbaf324ac4a25c0206a5db0e9f7a48f7
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/cmdline.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt
index 948c921431..ef8f4bc317 100644
--- a/runtime/doc/cmdline.txt
+++ b/runtime/doc/cmdline.txt
@@ -376,10 +376,18 @@ CTRL-D List names that match the pattern in front of the cursor.
*c_CTRL-N*
CTRL-N After using 'wildchar' which got multiple matches, go to next
match. Otherwise recall more recent command-line from history.
+ */_CTRL-N*
+ When 'incsearch' is set, entering a search pattern for "/" or
+ "?" and the current match is displayed then CTRL-N will move
+ to the next match (does not take |search-offset| into account)
<S-Tab> *c_CTRL-P* *c_<S-Tab>*
CTRL-P After using 'wildchar' which got multiple matches, go to
previous match. Otherwise recall older command-line from
history. <S-Tab> only works with the GUI.
+ */_CTRL-P*
+ When 'incsearch' is set, entering a search pattern for "/" or
+ "?" and the current match is displayed then CTRL-P will move
+ to the previous match (does not take |search-offset| into account).
*c_CTRL-A*
CTRL-A All names that match the pattern in front of the cursor are
inserted.
@@ -389,6 +397,7 @@ 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