summaryrefslogtreecommitdiffstats
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-18 21:40:41 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-18 21:40:41 +0200
commitde2396fc875837c47b1c13f5e80e0a1200c5eb61 (patch)
tree54faaa93dc859a2529e32bb0d6d41935651a9299 /src/structs.h
parentd032f34a51c6722101626c4167dffecc427ac343 (diff)
patch 8.2.1239: "maxwidth" in 'completepopup' not obeyedv8.2.1239
Problem: "maxwidth" in 'completepopup' not obeyed. (Jay Sitter) Solution: Add separate field for value from option. (closes #6470)
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index 68a9ba9582..ba9c98db0f 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -3302,6 +3302,7 @@ struct window_S
int w_minwidth; // "minwidth" for popup window
int w_maxheight; // "maxheight" for popup window
int w_maxwidth; // "maxwidth" for popup window
+ int w_maxwidth_opt; // maxwidth from option
int w_wantline; // "line" for popup window
int w_wantcol; // "col" for popup window
int w_firstline; // "firstline" for popup window