summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-21 17:29:29 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-21 17:29:29 +0200
commit258cef59d8c53a5b1c04937c826dc133ad5710e2 (patch)
tree7b3534b0d9a3dcd29aa7e911f67058be0b1a11df /src/vim.h
parent9cb698d5647db9299bb5b4b846c23f2015b7262b (diff)
downloadvim-git-258cef59d8c53a5b1c04937c826dc133ad5710e2.tar.gz
patch 8.1.1904: cannot have an info popup align with the popup menuv8.1.1904
Problem: Cannot have an info popup align with the popup menu. Solution: Add the "align" item to 'completepopup'.
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vim.h b/src/vim.h
index 4a861779e..6d89f03ab 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -623,6 +623,7 @@ extern int (*dyn_libintl_wputenv)(const wchar_t *envstring);
#define POPF_RESIZE 0x40 // popup can be resized by dragging
#define POPF_MAPPING 0x80 // mapping keys
#define POPF_INFO 0x100 // used for info of popup menu
+#define POPF_INFO_MENU 0x200 // align info popup with popup menu
#ifdef FEAT_TEXT_PROP
# define WIN_IS_POPUP(wp) ((wp)->w_popup_flags != 0)