vim-patch:8.1.1136: decoding of mouse click escape sequence is not tested (#35551)

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.

905dd905de

Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
Jan Edmund Lazo
2025-08-30 01:39:43 -04:00
committed by GitHub
parent 4edeaaa6e2
commit 0c0ef489f9
2 changed files with 9 additions and 4 deletions

View File

@@ -332,7 +332,7 @@ void nvim_feedkeys(String keys, String mode, Boolean escape_ks)
if (!dangerous) {
ex_normal_busy++;
}
exec_normal(true);
exec_normal(true, lowlevel);
if (!dangerous) {
ex_normal_busy--;
}