diff src/evalfunc.c @ 13866:4b35f2835ce4 v8.0.1804

patch 8.0.1804: using :normal in terminal window causes problems commit https://github.com/vim/vim/commit/655a82a8d32c2cd248a46c0ce365a4d50e3d56bd Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 8 22:01:07 2018 +0200 patch 8.0.1804: using :normal in terminal window causes problems Problem: Using :normal in terminal window causes problems. (Dominique Pelle) Solution: Don't call terminal_loop() for :normal. (closes #2886)
author Christian Brabandt <cb@256bit.org>
date Tue, 08 May 2018 22:15:05 +0200
parents 044337cbf854
children 3b6c29f8c1a2
line wrap: on
line diff
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -3313,7 +3313,7 @@ f_feedkeys(typval_T *argvars, typval_T *
 
 		if (!dangerous)
 		    ++ex_normal_busy;
-		exec_normal(TRUE);
+		exec_normal(TRUE, TRUE);
 		if (!dangerous)
 		    --ex_normal_busy;