mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00
fix(cmdheight=0): various issues part3 #19816
And fixed in https://github.com/neovim/neovim/pull/19801 regression. Fix #19834 Fix #19184
This commit is contained in:
@@ -2350,7 +2350,7 @@ bool msg_use_msgsep(void)
|
||||
{
|
||||
// the full-screen scroll behavior doesn't really make sense with
|
||||
// 'ext_multigrid'
|
||||
return ((dy_flags & DY_MSGSEP) || ui_has(kUIMultigrid));
|
||||
return (dy_flags & DY_MSGSEP) || ui_has(kUIMultigrid);
|
||||
}
|
||||
|
||||
bool msg_do_throttle(void)
|
||||
|
Reference in New Issue
Block a user