diff options
author | Luuk van Baal <luukvbaal@gmail.com> | 2022-12-29 03:07:49 +0100 |
---|---|---|
committer | Luuk van Baal <luukvbaal@gmail.com> | 2022-12-31 00:30:53 +0100 |
commit | b102bf22c009d3543f71d9d21c1252b54f5d4a54 (patch) | |
tree | ec658129951bd87d1db5b89a6e2ce782ffb40bf4 | |
parent | 05b6dd6e5f543083ebca581506398a8c263a2db6 (diff) | |
download | rneovim-b102bf22c009d3543f71d9d21c1252b54f5d4a54.tar.gz rneovim-b102bf22c009d3543f71d9d21c1252b54f5d4a54.tar.bz2 rneovim-b102bf22c009d3543f71d9d21c1252b54f5d4a54.zip |
fix(ui): allow resize commands to set 'cmdheight' to 0
Resolve https://github.com/neovim/neovim/issues/21558
-rw-r--r-- | src/nvim/option.c | 2 | ||||
-rw-r--r-- | src/nvim/window.c | 6 | ||||
-rw-r--r-- | src/nvim/window.h | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 1a6707f128..6785529f59 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -2280,6 +2280,8 @@ static char *set_num_option(int opt_idx, char_u *varp, long value, char *errbuf, int minval = 0; if (value < minval) { errmsg = e_positive; + } else { + p_ch_was_zero = value == 0; } } else if (pp == &p_tm) { if (value < 0) { diff --git a/src/nvim/window.c b/src/nvim/window.c index fe771c52c6..5c1c861f45 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -5758,8 +5758,8 @@ static void frame_setheight(frame_T *curfrp, int height) if (height > ROWS_AVAIL) { // If height is greater than the available space, try to create space for // the frame by reducing 'cmdheight' if possible, while making sure - // `cmdheight` doesn't go below 1. - height = (int)MIN((p_ch > 0 ? ROWS_AVAIL + (p_ch - 1) : ROWS_AVAIL), height); + // `cmdheight` doesn't go below 1 if it wasn't set to 0 explicitly. + height = (int)MIN(ROWS_AVAIL + p_ch - !p_ch_was_zero, height); } if (height > 0) { frame_new_height(curfrp, height, false, false); @@ -6090,8 +6090,6 @@ void win_setminwidth(void) /// Status line of dragwin is dragged "offset" lines down (negative is up). void win_drag_status_line(win_T *dragwin, int offset) { - static bool p_ch_was_zero = false; - // If the user explicitly set 'cmdheight' to zero, then allow for dragging // the status line making it zero again. if (p_ch == 0) { diff --git a/src/nvim/window.h b/src/nvim/window.h index 9fd4d67b3f..f348f102c9 100644 --- a/src/nvim/window.h +++ b/src/nvim/window.h @@ -35,6 +35,8 @@ #define MIN_COLUMNS 12 // minimal columns for screen #define MIN_LINES 2 // minimal lines for screen +// Set to true if 'cmdheight' was explicitly set to 0. +EXTERN bool p_ch_was_zero INIT(= false); #ifdef INCLUDE_GENERATED_DECLARATIONS # include "window.h.generated.h" #endif |