comparison src/misc2.c @ 16594:6f52e82d9d4e v8.1.1300

patch 8.1.1300: in a terminal 'ballooneval' does not work right away commit https://github.com/vim/vim/commit/2f10658b06bbdd8f25c4ff152266c808234cee0a Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 8 21:59:25 2019 +0200 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.
author Bram Moolenaar <Bram@vim.org>
date Wed, 08 May 2019 22:00:05 +0200
parents 4182f74e2965
children 7e733046db1d
comparison
equal deleted inserted replaced
16593:2181d6152fd1 16594:6f52e82d9d4e
2494 #ifdef FEAT_EVAL 2494 #ifdef FEAT_EVAL
2495 {K_SNR, (char_u *)"SNR"}, 2495 {K_SNR, (char_u *)"SNR"},
2496 #endif 2496 #endif
2497 {K_PLUG, (char_u *)"Plug"}, 2497 {K_PLUG, (char_u *)"Plug"},
2498 {K_CURSORHOLD, (char_u *)"CursorHold"}, 2498 {K_CURSORHOLD, (char_u *)"CursorHold"},
2499 {K_IGNORE, (char_u *)"Ignore"},
2499 {0, NULL} 2500 {0, NULL}
2500 /* NOTE: When adding a long name update MAX_KEY_NAME_LEN. */ 2501 /* NOTE: When adding a long name update MAX_KEY_NAME_LEN. */
2501 }; 2502 };
2502 2503
2503 #define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry)) 2504 #define KEY_NAMES_TABLE_LEN (sizeof(key_names_table) / sizeof(struct key_name_entry))