From 725310d89e1ba268bf410472b7de054c6c260161 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 24 Apr 2019 23:08:23 +0200 Subject: 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. --- src/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/menu.c') diff --git a/src/menu.c b/src/menu.c index f71ede945..da03322bf 100644 --- a/src/menu.c +++ b/src/menu.c @@ -1214,7 +1214,7 @@ show_menus_recursive(vimmenu_T *menu, int modes, int depth) if (*menu->strings[bit] == NUL) msg_puts_attr("", HL_ATTR(HLF_8)); else - msg_outtrans_special(menu->strings[bit], FALSE); + msg_outtrans_special(menu->strings[bit], FALSE, 0); } } else -- cgit v1.2.1