0
0
mirror of https://github.com/vim/vim.git synced 2025-10-13 06:54:15 -04:00

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)
This commit is contained in:
Bram Moolenaar
2018-05-08 22:01:07 +02:00
parent 9b50f36e40
commit 655a82a8d3
4 changed files with 7 additions and 5 deletions

View File

@@ -3313,7 +3313,7 @@ f_feedkeys(typval_T *argvars, typval_T *rettv UNUSED)
if (!dangerous)
++ex_normal_busy;
exec_normal(TRUE);
exec_normal(TRUE, TRUE);
if (!dangerous)
--ex_normal_busy;