diff src/globals.h @ 29548:6f9e21c30d7e v9.0.0115

patch 9.0.0115: when 'cmdheight' is zero pressing ':' may scroll a window Commit: https://github.com/vim/vim/commit/6747cf1671bd41cddee77c65b3f9a70509f968db Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 30 19:10:06 2022 +0100 patch 9.0.0115: when 'cmdheight' is zero pressing ':' may scroll a window Problem: When 'cmdheight' is zero pressing ':' may scroll a window. Solution: Add the made_cmdheight_nonzero flag and set 'scrolloff' to zero.
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Jul 2022 20:15:03 +0200
parents 34e93e046526
children d413dccd4f8a
line wrap: on
line diff
--- a/src/globals.h
+++ b/src/globals.h
@@ -1728,3 +1728,6 @@ EXTERN int channel_need_redraw INIT(= FA
 // While executing a regexp and set to OPTION_MAGIC_ON or OPTION_MAGIC_OFF this
 // overrules p_magic.  Otherwise set to OPTION_MAGIC_NOT_SET.
 EXTERN optmagic_T magic_overruled INIT(= OPTION_MAGIC_NOT_SET);
+
+// Set when 'cmdheight' is changed from non-zero to one temporarily.
+EXTERN int made_cmdheight_nonzero INIT(= FALSE);