diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-30 00:32:42 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-30 00:34:44 -0500 |
commit | 5fc8a7ee096cf1a5cf78058a483b781c5c0c9af5 (patch) | |
tree | 0d62d5cc1f7d91133bdd9d349b5297635d48dc44 | |
parent | ebd5c2cdda9a7114070021cbbc163054aa8f62da (diff) | |
download | rneovim-5fc8a7ee096cf1a5cf78058a483b781c5c0c9af5.tar.gz rneovim-5fc8a7ee096cf1a5cf78058a483b781c5c0c9af5.tar.bz2 rneovim-5fc8a7ee096cf1a5cf78058a483b781c5c0c9af5.zip |
vim-patch:8.1.1300: in a terminal 'ballooneval' does not work right away
Problem: In a terminal 'ballooneval' does not work right away.
Solution: Flush output after drawing the balloon. Add the <Ignore> key
code. Add a test.
https://github.com/vim/vim/commit/2f10658b06bbdd8f25c4ff152266c808234cee0a
-rw-r--r-- | src/nvim/keymap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/keymap.c b/src/nvim/keymap.c index b8b9c945b9..4b8b9992f5 100644 --- a/src/nvim/keymap.c +++ b/src/nvim/keymap.c @@ -309,6 +309,7 @@ static const struct key_name_entry { { K_ZERO, "Nul" }, { K_SNR, "SNR" }, { K_PLUG, "Plug" }, + { K_IGNORE, "Ignore" }, { K_COMMAND, "Cmd" }, { 0, NULL } // NOTE: When adding a long name update MAX_KEY_NAME_LEN. |