mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 21:18:34 +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
@@ -3197,9 +3197,9 @@ showmap (
|
||||
} while (len < 12);
|
||||
|
||||
if (mp->m_noremap == REMAP_NONE) {
|
||||
msg_puts_attr("*", hl_attr(HLF_8));
|
||||
msg_puts_attr("*", HL_ATTR(HLF_8));
|
||||
} else if (mp->m_noremap == REMAP_SCRIPT) {
|
||||
msg_puts_attr("&", hl_attr(HLF_8));
|
||||
msg_puts_attr("&", HL_ATTR(HLF_8));
|
||||
} else {
|
||||
msg_putchar(' ');
|
||||
}
|
||||
@@ -3212,7 +3212,7 @@ showmap (
|
||||
/* Use FALSE below if we only want things like <Up> to show up as such on
|
||||
* the rhs, and not M-x etc, TRUE gets both -- webb */
|
||||
if (*mp->m_str == NUL) {
|
||||
msg_puts_attr("<Nop>", hl_attr(HLF_8));
|
||||
msg_puts_attr("<Nop>", HL_ATTR(HLF_8));
|
||||
} else {
|
||||
// Remove escaping of CSI, because "m_str" is in a format to be used
|
||||
// as typeahead.
|
||||
|
Reference in New Issue
Block a user