Problem: When calling setline() from Insert mode, using CTRL-R =, undo does
not work properly. (Israel Chauca)
Solution: Sync undo after evaluating the expression. (Christian Brabandt)
--no_mapping;
#ifdef FEAT_EVAL
- /*
- * Don't call u_sync() while getting the expression,
- * evaluating it or giving an error message for it!
- */
+ /* Don't call u_sync() while typing the expression or giving an error
+ * message for it. Only call it explicitly. */
++no_u_sync;
if (regname == '=')
{
if (im_on)
im_set_active(TRUE);
# endif
+ if (regname == '=')
+ /* sync undo, so the effect of e.g., setline() can be undone */
+ u_sync(TRUE);
}
if (regname == NUL || !valid_yank_reg(regname, FALSE))
{
ggO---\e:0put b
ggO---\e:0put a
ggO---\e:w >>test.out
+:so small.vim
+:set nocp
+:enew!
+oa\e
+:set ul=100
+ob\e
+:set ul=100
+o1\ea2\12=setline('.','1234')
+
+\euu:%w >>test.out
:qa!
ENDTEST
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1200,
/**/
1199,
/**/