comparison src/vim.h @ 16809:5ff14f96f1c9 v8.1.1406

patch 8.1.1406: popup_hide() and popup_show() not implemented yet commit https://github.com/vim/vim/commit/2cd0dce898995a2b05f7285a70efec3f67f579f5 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 26 22:17:52 2019 +0200 patch 8.1.1406: popup_hide() and popup_show() not implemented yet Problem: popup_hide() and popup_show() not implemented yet. Solution: Implement the functions.
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 May 2019 22:30:05 +0200
parents eda4d65f232c
children 4cfad94161f4
comparison
equal deleted inserted replaced
16808:c002c4899529 16809:5ff14f96f1c9
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 // Values for w_popup_flags.
617 #define PFL_HIDDEN 1 // popup is not displayed
618 #define PFL_REDRAWN 2 // popup was just redrawn
616 619
617 /* 620 /*
618 * Terminal highlighting attribute bits. 621 * Terminal highlighting attribute bits.
619 * Attributes above HL_ALL are used for syntax highlighting. 622 * Attributes above HL_ALL are used for syntax highlighting.
620 */ 623 */