diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-26 22:17:52 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-26 22:17:52 +0200 |
commit | 2cd0dce898995a2b05f7285a70efec3f67f579f5 (patch) | |
tree | d0f53338a226bedd3730e5a143bc226aff64cdb4 /src/structs.h | |
parent | 68e6560b84f196c82e27a72669684d5506a3a837 (diff) | |
download | vim-git-2cd0dce898995a2b05f7285a70efec3f67f579f5.tar.gz |
patch 8.1.1406: popup_hide() and popup_show() not implemented yetv8.1.1406
Problem: popup_hide() and popup_show() not implemented yet.
Solution: Implement the functions.
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index ca7c54070..925bf0363 100644 --- a/src/structs.h +++ b/src/structs.h @@ -2871,6 +2871,7 @@ struct window_S int w_vsep_width; /* Number of separator columns (0 or 1). */ pos_save_T w_save_cursor; /* backup of cursor pos and topline */ #ifdef FEAT_TEXT_PROP + int w_popup_flags; // PFL_ values int w_zindex; int w_maxheight; // "maxheight" for popup window int w_maxwidth; // "maxwidth" for popup window |