mirror of
https://github.com/neovim/neovim.git
synced 2025-01-01 17:23:36 -07:00
vim-patch:8.1.1358: cannot enter character with a CSI byte
Problem: Cannot enter character with a CSI byte.
Solution: Only check "gui.in_use" when VIMDLL is defined. (Ken Takata,
closes vim/vim#4396)
386b43e594
This commit is contained in:
parent
91c1737de6
commit
7ea350456d
@ -1287,9 +1287,9 @@ openscript (
|
|||||||
|
|
||||||
oldcurscript = curscript;
|
oldcurscript = curscript;
|
||||||
do {
|
do {
|
||||||
update_topline_cursor(); /* update cursor position and topline */
|
update_topline_cursor(); // update cursor position and topline
|
||||||
normal_cmd(&oa, FALSE); /* execute one command */
|
normal_cmd(&oa, false); // execute one command
|
||||||
vpeekc(); /* check for end of file */
|
vpeekc(); // check for end of file
|
||||||
} while (scriptin[oldcurscript] != NULL);
|
} while (scriptin[oldcurscript] != NULL);
|
||||||
|
|
||||||
State = save_State;
|
State = save_State;
|
||||||
|
Loading…
Reference in New Issue
Block a user