1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Fix /help commands spacing

This commit is contained in:
James Booth 2015-07-21 22:55:39 +01:00
parent fceec61a2c
commit 59dd87d5f8

View File

@ -795,7 +795,7 @@ cmd_help(ProfWin *window, gchar **args, struct cmd_help_t help)
GList *curr = ordered_commands;
while (curr) {
Command *cmd = curr->data;
cons_show("%-12s: %s", cmd->cmd, cmd->help.short_help);
cons_show("%-13s: %s", cmd->cmd, cmd->help.short_help);
curr = g_list_next(curr);
}
g_list_free(ordered_commands);