Hi Bram and list,
2016-3-11(Fri) 12:22:13 UTC+9 h_east:
[snip]
> I will create a solution from now.
Attached patch would fix this issue.
Please check this.
--
Best regards,
Hirohito Higashi (a.k.a. h_east)
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff --git a/src/eval.c b/src/eval.c
index 548c50b..9147dc3 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -11869,7 +11869,13 @@ f_feedkeys(typval_T *argvars, typval_T *rettv UNUSED)
if (vgetc_busy)
typebuf_was_filled = TRUE;
if (execute)
+ {
+ int did_wait_return_save = did_wait_return;
+
+ did_wait_return = 1;
exec_normal(TRUE);
+ did_wait_return = did_wait_return_save;
+ }
}
}
}