diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-07 14:21:47 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-07 14:21:47 +0200 |
commit | 905dd905debfde403b2a18178ccc1f8e118f4f2b (patch) | |
tree | 09a0e040e2c2aeafd22d26c15294ea876f0006ba /src/evalfunc.c | |
parent | d85c396d5149a87677e30742f92b2ecfe28af8a6 (diff) | |
download | vim-git-905dd905debfde403b2a18178ccc1f8e118f4f2b.tar.gz |
patch 8.1.1136: decoding of mouse click escape sequence is not testedv8.1.1136
Problem: Decoding of mouse click escape sequence is not tested.
Solution: Add a test for xterm and SGR using low-level input. Make
low-level input execution with feedkeys() work.
Diffstat (limited to 'src/evalfunc.c')
-rw-r--r-- | src/evalfunc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/evalfunc.c b/src/evalfunc.c index b79284c07..7f8330f99 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -3792,7 +3792,7 @@ f_feedkeys(typval_T *argvars, typval_T *rettv UNUSED) if (!dangerous) ++ex_normal_busy; - exec_normal(TRUE, FALSE, TRUE); + exec_normal(TRUE, lowlevel, TRUE); if (!dangerous) --ex_normal_busy; |