aboutsummaryrefslogtreecommitdiff
path: root/cmd-list-commands.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-02-10 18:26:22 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-02-10 18:26:22 +0000
commit6ad2c5c40fb1532b2eeae9f01327752708c6a510 (patch)
tree225abc8fe06e8bee91c93829bc29f8ab696e52dd /cmd-list-commands.c
parent99cc0015f89698a8e988fa52d51e5959759bf80f (diff)
downloadrtmux-6ad2c5c40fb1532b2eeae9f01327752708c6a510.tar.gz
rtmux-6ad2c5c40fb1532b2eeae9f01327752708c6a510.tar.bz2
rtmux-6ad2c5c40fb1532b2eeae9f01327752708c6a510.zip
Show alias in lscm output.
Diffstat (limited to 'cmd-list-commands.c')
-rw-r--r--cmd-list-commands.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/cmd-list-commands.c b/cmd-list-commands.c
index 68e0e80d..2acdfc50 100644
--- a/cmd-list-commands.c
+++ b/cmd-list-commands.c
@@ -42,8 +42,15 @@ cmd_list_commands_exec(unused struct cmd *self, struct cmd_ctx *ctx)
{
const struct cmd_entry **entryp;
- for (entryp = cmd_table; *entryp != NULL; entryp++)
- ctx->print(ctx, "%s %s", (*entryp)->name, (*entryp)->usage);
+ for (entryp = cmd_table; *entryp != NULL; entryp++) {
+ if ((*entryp)->alias != NULL) {
+ ctx->print(ctx, "%s (%s) %s", (*entryp)->name,
+ (*entryp)->alias, (*entryp)->usage);
+ } else {
+ ctx->print(ctx, "%s %s", (*entryp)->name,
+ (*entryp)->usage);
+ }
+ }
return (CMD_RETURN_NORMAL);
}