mirror of
https://github.com/neovim/neovim.git
synced 2025-10-18 07:41:51 +00:00
fix(quickfix): make shortmess+=O work with cmdheight=0 (#29609)
(cherry picked from commit 73ae7d44a2
)
This commit is contained in:

committed by
github-actions[bot]
![github-actions[bot]](/assets/img/avatar_default.png)
parent
f39fb4c11e
commit
63ff7338ea
@@ -2914,8 +2914,7 @@ static void qf_jump_print_msg(qf_info_T *qi, int qf_index, qfline_T *qf_ptr, buf
|
||||
{
|
||||
garray_T *const gap = qfga_get();
|
||||
|
||||
// Update the screen before showing the message, unless the screen
|
||||
// scrolled up.
|
||||
// Update the screen before showing the message, unless messages scrolled.
|
||||
if (!msg_scrolled) {
|
||||
update_topline(curwin);
|
||||
if (must_redraw) {
|
||||
@@ -2937,7 +2936,8 @@ static void qf_jump_print_msg(qf_info_T *qi, int qf_index, qfline_T *qf_ptr, buf
|
||||
linenr_T i = msg_scroll;
|
||||
if (curbuf == old_curbuf && curwin->w_cursor.lnum == old_lnum) {
|
||||
msg_scroll = true;
|
||||
} else if (!msg_scrolled && shortmess(SHM_OVERALL)) {
|
||||
} else if ((msg_scrolled == 0 || (p_ch == 0 && msg_scrolled == 1))
|
||||
&& shortmess(SHM_OVERALL)) {
|
||||
msg_scroll = false;
|
||||
}
|
||||
msg_ext_set_kind("quickfix");
|
||||
|
Reference in New Issue
Block a user