about summary refs log tree commit diff stats
path: root/src/command
diff options
context:
space:
mode:
Diffstat (limited to 'src/command')
-rw-r--r--src/command/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/commands.c b/src/command/commands.c
index 810772d5..2e377f4e 100644
--- a/src/command/commands.c
+++ b/src/command/commands.c
@@ -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);