summaryrefslogtreecommitdiffstats
path: root/src/popupwin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/popupwin.c')
-rw-r--r--src/popupwin.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/popupwin.c b/src/popupwin.c
index 3603a1c717..c042fe82d8 100644
--- a/src/popupwin.c
+++ b/src/popupwin.c
@@ -428,6 +428,13 @@ apply_options(win_T *wp, buf_T *buf UNUSED, dict_T *dict)
semsg(_(e_invarg2), tv_get_string(&di->di_tv));
}
+ nr = dict_get_number(dict, (char_u *)"hidden");
+ if (nr > 0)
+ {
+ wp->w_popup_flags |= POPF_HIDDEN;
+ --wp->w_buffer->b_nwindows;
+ }
+
popup_mask_refresh = TRUE;
}