mirror of
https://github.com/neovim/neovim.git
synced 2025-10-13 05:16:09 +00:00
refactor: replace char_u #18429
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1078,7 +1078,7 @@ static int cs_help(exarg_T *eap)
|
||||
(void)msg_puts(_("cscope commands:\n"));
|
||||
while (cmdp->name != NULL) {
|
||||
char *help = _(cmdp->help);
|
||||
int space_cnt = 30 - vim_strsize((char_u *)help);
|
||||
int space_cnt = 30 - vim_strsize(help);
|
||||
|
||||
// Use %*s rather than %30s to ensure proper alignment in utf-8
|
||||
if (space_cnt < 0) {
|
||||
|
Reference in New Issue
Block a user