comparison src/vim.h @ 19542:9e428147e4ee v8.2.0328

patch 8.2.0328: no redraw when leaving term-normal mode in popup terminal Commit: https://github.com/vim/vim/commit/e52e0c89d1a6305beca3c01f89a4892dcb43bc71 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 28 22:20:10 2020 +0100 patch 8.2.0328: no redraw when leaving term-normal mode in popup terminal Problem: No redraw when leaving terminal-normal mode in a terminal popup window. Solution: Redraw the popup window. (closes #5708)
author Bram Moolenaar <Bram@vim.org>
date Fri, 28 Feb 2020 22:30:09 +0100
parents 22f0dda71638
children d4fa9db88d16
comparison
equal deleted inserted replaced
19541:80dd4d7df929 19542:9e428147e4ee
637 #define POPUP_HANDLED_1 0x01 // used by mouse_find_win() 637 #define POPUP_HANDLED_1 0x01 // used by mouse_find_win()
638 #define POPUP_HANDLED_2 0x02 // used by popup_do_filter() 638 #define POPUP_HANDLED_2 0x02 // used by popup_do_filter()
639 #define POPUP_HANDLED_3 0x04 // used by popup_check_cursor_pos() 639 #define POPUP_HANDLED_3 0x04 // used by popup_check_cursor_pos()
640 #define POPUP_HANDLED_4 0x08 // used by may_update_popup_mask() 640 #define POPUP_HANDLED_4 0x08 // used by may_update_popup_mask()
641 #define POPUP_HANDLED_5 0x10 // used by update_popups() 641 #define POPUP_HANDLED_5 0x10 // used by update_popups()
642
643 #ifdef FEAT_PROP_POPUP
644 # define WIN_IS_POPUP(wp) ((wp)->w_popup_flags != 0)
645 #else
646 # define WIN_IS_POPUP(wp) 0
647 #endif
648 642
649 /* 643 /*
650 * Terminal highlighting attribute bits. 644 * Terminal highlighting attribute bits.
651 * Attributes above HL_ALL are used for syntax highlighting. 645 * Attributes above HL_ALL are used for syntax highlighting.
652 */ 646 */