summaryrefslogtreecommitdiffstats
path: root/src/if_cscope.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-01-28 15:04:42 +0000
committerBram Moolenaar <Bram@vim.org>2009-01-28 15:04:42 +0000
commitdb867d50ba39ea7cf6e644971bb321053a828605 (patch)
treea5d8c17ae3870522750346e22a8e291751720266 /src/if_cscope.c
parenta850a711fa7cb22849db3d35ca80ae071c451468 (diff)
updated for version 7.2-091v7.2.091
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r--src/if_cscope.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c
index 4dff11631e..a9a0506b80 100644
--- a/src/if_cscope.c
+++ b/src/if_cscope.c
@@ -1177,8 +1177,16 @@ cs_help(eap)
(void)MSG_PUTS(_("cscope commands:\n"));
while (cmdp->name != NULL)
{
- (void)smsg((char_u *)_("%-5s: %-30s (Usage: %s)"),
- cmdp->name, _(cmdp->help), cmdp->usage);
+ char *help = _(cmdp->help);
+ int space_cnt = 30 - vim_strsize((char_u *)help);
+
+ /* Use %*s rather than %30s to ensure proper alignment in utf-8 */
+ if (space_cnt < 0)
+ space_cnt = 0;
+ (void)smsg((char_u *)_("%-5s: %s%*s (Usage: %s)"),
+ cmdp->name,
+ help, space_cnt, " ",
+ cmdp->usage);
if (strcmp(cmdp->name, "find") == 0)
MSG_PUTS(_("\n"
" c: Find functions calling this function\n"