mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 18:28:19 +00:00
vim-patch:8.0.0466: still macros that should be all-caps (#8510)
Problem: There are still a few macros that should be all-caps.
Solution: Make a few more macros all-caps.
8820b48654
This commit is contained in:

committed by
Justin M. Keyes

parent
b94b59e4e8
commit
bbb88607c9
@@ -825,8 +825,8 @@ static void show_menus_recursive(vimmenu_T *menu, int modes, int depth)
|
||||
msg_outnum((long)menu->priority);
|
||||
MSG_PUTS(" ");
|
||||
}
|
||||
/* Same highlighting as for directories!? */
|
||||
msg_outtrans_attr(menu->name, hl_attr(HLF_D));
|
||||
// Same highlighting as for directories!?
|
||||
msg_outtrans_attr(menu->name, HL_ATTR(HLF_D));
|
||||
}
|
||||
|
||||
if (menu != NULL && menu->children == NULL) {
|
||||
@@ -854,7 +854,7 @@ static void show_menus_recursive(vimmenu_T *menu, int modes, int depth)
|
||||
msg_putchar(' ');
|
||||
MSG_PUTS(" ");
|
||||
if (*menu->strings[bit] == NUL) {
|
||||
msg_puts_attr("<Nop>", hl_attr(HLF_8));
|
||||
msg_puts_attr("<Nop>", HL_ATTR(HLF_8));
|
||||
} else {
|
||||
msg_outtrans_special(menu->strings[bit], false);
|
||||
}
|
||||
|
Reference in New Issue
Block a user