summaryrefslogtreecommitdiff
path: root/src/testdir/test_popup.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-04-17 22:14:32 +0200
committerBram Moolenaar <Bram@vim.org>2018-04-17 22:14:32 +0200
commite87edf3b85f607632e5431640071fdbc36b685b2 (patch)
treec8c38e712166b58229440e243acad08730b08113 /src/testdir/test_popup.vim
parent561f8a5a4612751c2a4ebd6bf918cbc3be867350 (diff)
downloadvim-git-e87edf3b85f607632e5431640071fdbc36b685b2.tar.gz
patch 8.0.1731: characters deleted on completionv8.0.1731
Problem: Characters deleted on completion. (Adrià Farrés) Solution: Also check the last item for the ORIGINAL_TEXT flag. (Christian Brabandt, closes #1645)
Diffstat (limited to 'src/testdir/test_popup.vim')
-rw-r--r--src/testdir/test_popup.vim9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/testdir/test_popup.vim b/src/testdir/test_popup.vim
index 8294febe6..a2e86d703 100644
--- a/src/testdir/test_popup.vim
+++ b/src/testdir/test_popup.vim
@@ -814,5 +814,14 @@ func Test_popup_command()
call delete('Xtest')
endfunc
+func Test_popup_complete_backwards()
+ new
+ call setline(1, ['Post', 'Port', 'Po'])
+ let expected=['Post', 'Port', 'Port']
+ call cursor(3,2)
+ call feedkeys("A\<C-X>". repeat("\<C-P>", 3). "rt\<cr>", 'tx')
+ call assert_equal(expected, getline(1,'$'))
+ bwipe!
+endfunc
" vim: shiftwidth=2 sts=2 expandtab