comparison src/structs.h @ 21377:47f25a0c5a42 v8.2.1239

patch 8.2.1239: "maxwidth" in 'completepopup' not obeyed Commit: https://github.com/vim/vim/commit/de2396fc875837c47b1c13f5e80e0a1200c5eb61 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 18 21:40:41 2020 +0200 patch 8.2.1239: "maxwidth" in 'completepopup' not obeyed Problem: "maxwidth" in 'completepopup' not obeyed. (Jay Sitter) Solution: Add separate field for value from option. (closes https://github.com/vim/vim/issues/6470)
author Bram Moolenaar <Bram@vim.org>
date Sat, 18 Jul 2020 21:45:03 +0200
parents 8de90d2965a3
children 1c4d4aa22b37
comparison
equal deleted inserted replaced
21376:8c028ece0248 21377:47f25a0c5a42
3300 int w_zindex; 3300 int w_zindex;
3301 int w_minheight; // "minheight" for popup window 3301 int w_minheight; // "minheight" for popup window
3302 int w_minwidth; // "minwidth" for popup window 3302 int w_minwidth; // "minwidth" for popup window
3303 int w_maxheight; // "maxheight" for popup window 3303 int w_maxheight; // "maxheight" for popup window
3304 int w_maxwidth; // "maxwidth" for popup window 3304 int w_maxwidth; // "maxwidth" for popup window
3305 int w_maxwidth_opt; // maxwidth from option
3305 int w_wantline; // "line" for popup window 3306 int w_wantline; // "line" for popup window
3306 int w_wantcol; // "col" for popup window 3307 int w_wantcol; // "col" for popup window
3307 int w_firstline; // "firstline" for popup window 3308 int w_firstline; // "firstline" for popup window
3308 int w_want_scrollbar; // when zero don't use a scrollbar 3309 int w_want_scrollbar; // when zero don't use a scrollbar
3309 int w_has_scrollbar; // 1 if scrollbar displayed, 0 otherwise 3310 int w_has_scrollbar; // 1 if scrollbar displayed, 0 otherwise