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 96e7a6e commit 378daf8Copy full SHA for 378daf8
src/menu.c
@@ -88,7 +88,7 @@ static const char *toolbar_names[] =
88
static int
89
menu_is_winbar(char_u *name)
90
{
91
- return (STRNCMP(name, "WinBar", 5) == 0);
+ return (STRNCMP(name, "WinBar", 6) == 0);
92
}
93
94
int
@@ -1802,6 +1802,7 @@ menu_is_menubar(char_u *name)
1802
1803
return (!menu_is_popup(name)
1804
&& !menu_is_toolbar(name)
1805
+ && !menu_is_winbar(name)
1806
&& *name != MNU_HIDDEN_CHAR);
1807
1808
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
+ 1142,
766
/**/
767
1141,
768
0 commit comments