summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-02-21 23:00:36 +0100
committerBram Moolenaar <Bram@vim.org>2017-02-21 23:00:36 +0100
commitd099e033703ce0772f152b8df8a763f0b65303ee (patch)
tree5ec8e995490879b5d202a4f769a0b8d9a14f4a25 /src/edit.c
parentbfd30590f6e3475033099d0fb20d9444fa10af6b (diff)
patch 8.0.0347: when using completion comment leader wont workv8.0.0347
Problem: When using CTRL-X CTRL-U inside a comment, the use of the comment leader may not work. (Klement) Solution: Save and restore did_ai. (Christian Brabandt, closes #1494)
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/edit.c b/src/edit.c
index d7f89bcbed..25a123e889 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -5095,6 +5095,7 @@ ins_complete(int c, int enable_pum)
int n;
int save_w_wrow;
int insert_match;
+ int save_did_ai = did_ai;
compl_direction = ins_compl_key2dir(c);
insert_match = ins_compl_use_match(c);
@@ -5378,6 +5379,8 @@ ins_complete(int c, int enable_pum)
{
EMSG2(_(e_notset), ctrl_x_mode == CTRL_X_FUNCTION
? "completefunc" : "omnifunc");
+ /* restore did_ai, so that adding comment leader works */
+ did_ai = save_did_ai;
return FAIL;
}