comparison src/vim.h @ 16778:eda4d65f232c v8.1.1391

patch 8.1.1391: no popup window support commit https://github.com/vim/vim/commit/4d784b21d14fc66e98a2b07f70343cdd4acd62aa Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 25 19:51:39 2019 +0200 patch 8.1.1391: no popup window support Problem: No popup window support. Solution: Add initial code for popup windows. Add the 'wincolor' option.
author Bram Moolenaar <Bram@vim.org>
date Sat, 25 May 2019 20:00:08 +0200
parents b52ea9c5f1db
children 5ff14f96f1c9
comparison
equal deleted inserted replaced
16777:20d51e99dd6a 16778:eda4d65f232c
602 * on on w_botline valid 602 * on on w_botline valid
603 * off on w_botline approximated 603 * off on w_botline approximated
604 * off off w_botline not valid 604 * off off w_botline not valid
605 * on off not possible 605 * on off not possible
606 */ 606 */
607 #define VALID_WROW 0x01 /* w_wrow (window row) is valid */ 607 #define VALID_WROW 0x01 // w_wrow (window row) is valid
608 #define VALID_WCOL 0x02 /* w_wcol (window col) is valid */ 608 #define VALID_WCOL 0x02 // w_wcol (window col) is valid
609 #define VALID_VIRTCOL 0x04 /* w_virtcol (file col) is valid */ 609 #define VALID_VIRTCOL 0x04 // w_virtcol (file col) is valid
610 #define VALID_CHEIGHT 0x08 /* w_cline_height and w_cline_folded valid */ 610 #define VALID_CHEIGHT 0x08 // w_cline_height and w_cline_folded valid
611 #define VALID_CROW 0x10 /* w_cline_row is valid */ 611 #define VALID_CROW 0x10 // w_cline_row is valid
612 #define VALID_BOTLINE 0x20 /* w_botine and w_empty_rows are valid */ 612 #define VALID_BOTLINE 0x20 // w_botine and w_empty_rows are valid
613 #define VALID_BOTLINE_AP 0x40 /* w_botine is approximated */ 613 #define VALID_BOTLINE_AP 0x40 // w_botine is approximated
614 #define VALID_TOPLINE 0x80 /* w_topline is valid (for cursor position) */ 614 #define VALID_TOPLINE 0x80 // w_topline is valid (for cursor position)
615 #define VALID_POPUP 0x100 // popup has been redrawn
615 616
616 /* 617 /*
617 * Terminal highlighting attribute bits. 618 * Terminal highlighting attribute bits.
618 * Attributes above HL_ALL are used for syntax highlighting. 619 * Attributes above HL_ALL are used for syntax highlighting.
619 */ 620 */