if (prompt_command->subs) {
const phpdbg_command_t *sub_command = prompt_command->subs;
phpdbg_writeln(EMPTY);
- phpdbg_writeln(" %c -> %s", prompt_command->alias, prompt_command->name);
+ phpdbg_writeln(" %c -> %9s", prompt_command->alias, prompt_command->name);
while (sub_command && sub_command->name) {
if (sub_command->alias) {
phpdbg_writeln(" |-------- %c -> %15s\t%s", sub_command->alias,
}
phpdbg_writeln(EMPTY);
} else {
- phpdbg_writeln(" %c -> %s\t%s", prompt_command->alias,
+ phpdbg_writeln(" %c -> %9s\t\t\t%s", prompt_command->alias,
prompt_command->name, prompt_command->tip);
}
}