diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-08 21:59:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-08 21:59:25 +0200 |
commit | 2f10658b06bbdd8f25c4ff152266c808234cee0a (patch) | |
tree | 8227dc063a5f4f258563f74adf09326a7d57dae0 /src/misc2.c | |
parent | a5c6a0b6c71ae11078cbf6f5e18ce49a0468a117 (diff) | |
download | vim-git-2f10658b06bbdd8f25c4ff152266c808234cee0a.tar.gz |
patch 8.1.1300: in a terminal 'ballooneval' does not work right awayv8.1.1300
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.
Diffstat (limited to 'src/misc2.c')
-rw-r--r-- | src/misc2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/misc2.c b/src/misc2.c index e615f96b5..3ef7c9422 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -2496,6 +2496,7 @@ static struct key_name_entry #endif {K_PLUG, (char_u *)"Plug"}, {K_CURSORHOLD, (char_u *)"CursorHold"}, + {K_IGNORE, (char_u *)"Ignore"}, {0, NULL} /* NOTE: When adding a long name update MAX_KEY_NAME_LEN. */ }; |