From d56a79d3396cf70861b7f739a3c400db91ce7b70 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 19 Feb 2017 15:26:18 +0100 Subject: patch 8.0.0341: undo does not work properly when using completion Problem: When using complete() and typing a character undo is saved after the character was inserted. (Shougo) Solution: Save for undo before inserting the character. --- src/edit.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/edit.c') diff --git a/src/edit.c b/src/edit.c index a37261ffab..d7f89bcbed 100644 --- a/src/edit.c +++ b/src/edit.c @@ -3583,7 +3583,11 @@ ins_compl_addleader(int c) { #ifdef FEAT_MBYTE int cc; +#endif + if (stop_arrow() == FAIL) + return; +#ifdef FEAT_MBYTE if (has_mbyte && (cc = (*mb_char2len)(c)) > 1) { char_u buf[MB_MAXBYTES + 1]; -- cgit v1.2.3