aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/menu.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-10-30 00:56:49 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-02-16 07:49:44 -0500
commit7955c05accaac452c1350d08af62d9d75387f24f (patch)
treef04f3f3522984b2ddf638e9785631dc128afea19 /src/nvim/menu.c
parent986eafce4708c8f49552d7dcd0cc5fe471caa655 (diff)
downloadrneovim-7955c05accaac452c1350d08af62d9d75387f24f.tar.gz
rneovim-7955c05accaac452c1350d08af62d9d75387f24f.tar.bz2
rneovim-7955c05accaac452c1350d08af62d9d75387f24f.zip
vim-patch:8.1.1201: output of :command is hard to read
Problem: Output of :command is hard to read. Solution: Make some columns wider, some narrower. Truncate the command when listing all. https://github.com/vim/vim/commit/725310d89e1ba268bf410472b7de054c6c260161
Diffstat (limited to 'src/nvim/menu.c')
-rw-r--r--src/nvim/menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/menu.c b/src/nvim/menu.c
index 18c4f1fff1..a3e0130465 100644
--- a/src/nvim/menu.c
+++ b/src/nvim/menu.c
@@ -868,7 +868,7 @@ static void show_menus_recursive(vimmenu_T *menu, int modes, int depth)
if (*menu->strings[bit] == NUL) {
msg_puts_attr("<Nop>", HL_ATTR(HLF_8));
} else {
- msg_outtrans_special(menu->strings[bit], false);
+ msg_outtrans_special(menu->strings[bit], false, 0);
}
}
} else {