We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37c64c7 commit a5a2be2Copy full SHA for a5a2be2
2 files changed
src/version.c
@@ -761,6 +761,8 @@ static char *(features[]) =
761
762
static int included_patches[] =
763
{ /* Add new patch number below this line */
764
+/**/
765
+ 1129,
766
/**/
767
1128,
768
src/vim.h
@@ -864,7 +864,11 @@ extern int (*dyn_libintl_putenv)(const char *envstring);
864
#define W_ENDCOL(wp) (wp->w_wincol + wp->w_width)
865
#define W_VSEP_WIDTH(wp) (wp->w_vsep_width)
866
#define W_STATUS_HEIGHT(wp) (wp->w_status_height)
867
-#define W_WINROW(wp) (wp->w_winrow)
+#ifdef FEAT_MENU
868
+# define W_WINROW(wp) (wp->w_winrow + wp->w_winbar_height)
869
+#else
870
+# define W_WINROW(wp) (wp->w_winrow)
871
+#endif
872
873
#ifdef NO_EXPANDPATH
874
# define gen_expand_wildcards mch_expand_wildcards
0 commit comments