summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-10-17 20:47:02 +0200
committerBram Moolenaar <Bram@vim.org>2016-10-17 20:47:02 +0200
commitcbd3bd6cbed5baf418b037b17ad46e339ff59174 (patch)
tree67dfc5f3df411644c14127d4d19a2ec1889a1c3e /src
parent869e35270ecffd9024958880cb03f6f0bb01ea93 (diff)
downloadvim-git-cbd3bd6cbed5baf418b037b17ad46e339ff59174.tar.gz
patch 8.0.0042v8.0.0042
Problem: When using Insert mode completion with 'completeopt' containing "noinsert" change is not saved for undo. (Tommy Allen) Solution: Call stop_arrow() before inserting for pressing Enter.
Diffstat (limited to 'src')
-rw-r--r--src/edit.c5
-rw-r--r--src/testdir/test_popup.vim7
-rw-r--r--src/version.c2
3 files changed, 12 insertions, 2 deletions
diff --git a/src/edit.c b/src/edit.c
index 53b43c485..776a420f2 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -857,8 +857,9 @@ edit(
/* Pressing CTRL-Y selects the current match. When
* compl_enter_selects is set the Enter key does the same. */
- if (c == Ctrl_Y || (compl_enter_selects
- && (c == CAR || c == K_KENTER || c == NL)))
+ if ((c == Ctrl_Y || (compl_enter_selects
+ && (c == CAR || c == K_KENTER || c == NL)))
+ && stop_arrow() == OK)
{
ins_compl_delete();
ins_compl_insert(FALSE);
diff --git a/src/testdir/test_popup.vim b/src/testdir/test_popup.vim
index 38459b323..d037b7abd 100644
--- a/src/testdir/test_popup.vim
+++ b/src/testdir/test_popup.vim
@@ -420,6 +420,13 @@ func Test_complete_no_undo()
call feedkeys("u", 'xt')
call assert_equal('', getline(2))
+ call feedkeys("ibbb\<Esc>0", 'xt')
+ call assert_equal('bbb', getline(2))
+ call feedkeys("A\<Right>\<Down>\<CR>\<Esc>", 'xt')
+ call assert_equal('January', getline(2))
+ call feedkeys("u", 'xt')
+ call assert_equal('bbb', getline(2))
+
iunmap <Right>
set completeopt&
q!
diff --git a/src/version.c b/src/version.c
index 4902d69f0..3a2b1a5e0 100644
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 42,
+/**/
41,
/**/
40,