summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-07-28 21:16:48 +0200
committerChristian Brabandt <cb@256bit.org>2024-07-28 21:16:48 +0200
commit13032a49b7d2a45e7c774cf23ee8f58f56b03781 (patch)
tree2c78bc887508a67ed1d1ba9fe050bf0f06e3b528
parent0268ff3af3d598e18454a3ce1c510f411427b6c0 (diff)
patch 9.1.0634: Ctrl-P not working by defaultv9.1.0634
Problem: Ctrl-P not working by default (Jesse Pavel, after v9.1.0598) Solution: Revert part of v9.1.0598 and set cur_match_pos correctly according to compl_dir_forward() fixes: #15370 closes: #15379 Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/insexpand.c5
-rw-r--r--src/testdir/test_ins_complete.vim10
-rw-r--r--src/version.c2
3 files changed, 13 insertions, 4 deletions
diff --git a/src/insexpand.c b/src/insexpand.c
index 00a7b75684..3a168848fe 100644
--- a/src/insexpand.c
+++ b/src/insexpand.c
@@ -4012,11 +4012,8 @@ ins_compl_get_exp(pos_T *ini)
st.ins_buf = curbuf; // In case the buffer was wiped out.
compl_old_match = compl_curr_match; // remember the last current match
- if (in_fuzzy)
- st.cur_match_pos = (compl_dir_forward())
+ st.cur_match_pos = (compl_dir_forward())
? &st.last_match_pos : &st.first_match_pos;
- else
- st.cur_match_pos = &st.last_match_pos;
// For ^N/^P loop over all the flags/windows/buffers in 'complete'.
for (;;)
diff --git a/src/testdir/test_ins_complete.vim b/src/testdir/test_ins_complete.vim
index f3f6eac23f..cf688ac6a6 100644
--- a/src/testdir/test_ins_complete.vim
+++ b/src/testdir/test_ins_complete.vim
@@ -2688,4 +2688,14 @@ func Test_complete_fuzzy_match_tie()
set completeopt&
endfunc
+func Test_complete_backwards_default()
+ new
+ call append(1, ['foobar', 'foobaz'])
+ new
+ call feedkeys("i\<c-p>", 'tx')
+ call assert_equal('foobaz', getline('.'))
+ bw!
+ bw!
+endfunc
+
" vim: shiftwidth=2 sts=2 expandtab nofoldenable
diff --git a/src/version.c b/src/version.c
index 373cd8cb5c..6520422955 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 634,
+/**/
633,
/**/
632,