We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a997b45 commit bad0ce7Copy full SHA for bad0ce7
src/testdir/test_popup.vim
@@ -824,4 +824,14 @@ func Test_popup_complete_backwards()
824
bwipe!
825
endfunc
826
827
+func Test_popup_complete_backwards_ctrl_p()
828
+ new
829
+ call setline(1, ['Post', 'Port', 'Po'])
830
+ let expected=['Post', 'Port', 'Port']
831
+ call cursor(3,2)
832
+ call feedkeys("A\<C-P>\<C-N>rt\<cr>", 'tx')
833
+ call assert_equal(expected, getline(1,'$'))
834
+ bwipe!
835
+endfunc
836
+
837
" vim: shiftwidth=2 sts=2 expandtab
src/version.c
@@ -762,6 +762,8 @@ static char *(features[]) =
762
763
static int included_patches[] =
764
{ /* Add new patch number below this line */
765
+/**/
766
+ 1733,
767
/**/
768
1732,
769
0 commit comments