diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-03-17 20:16:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 20:16:39 +0100 |
commit | 3c7e937a892308498ba23ce5c0959e51fbf28911 (patch) | |
tree | 79ae25f12d9f8c50690250c07f2c04cf3687166a /src/nvim/quickfix.c | |
parent | d238b8f6003d34cae7f65ff7585b48a2cd9449fb (diff) | |
parent | 5ab122917474b3f9e88be4ee88bc6d627980cfe0 (diff) | |
download | rneovim-3c7e937a892308498ba23ce5c0959e51fbf28911.tar.gz rneovim-3c7e937a892308498ba23ce5c0959e51fbf28911.tar.bz2 rneovim-3c7e937a892308498ba23ce5c0959e51fbf28911.zip |
Merge pull request #17266 from famiu/feat/ui/global-statusline
feat(statusline): add global statusline
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 72fd035cbd..1a08b22f49 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -3635,7 +3635,7 @@ static int qf_goto_cwindow(const qf_info_T *qi, bool resize, int sz, bool vertsp win_setwidth(sz); } } else if (sz != win->w_height - && (win->w_height + win->w_status_height + tabline_height() + && (win->w_height + win->w_hsep_height + win->w_status_height + tabline_height() < cmdline_row)) { win_setheight(sz); } |