mirror of
https://github.com/tmate-io/tmate-ssh-server.git
synced 2020-11-18 19:53:51 -08:00
Show alias in lscm output.
This commit is contained in:
parent
9b7e18f166
commit
dd76497ab0
@ -42,8 +42,15 @@ cmd_list_commands_exec(unused struct cmd *self, struct cmd_ctx *ctx)
|
|||||||
{
|
{
|
||||||
const struct cmd_entry **entryp;
|
const struct cmd_entry **entryp;
|
||||||
|
|
||||||
for (entryp = cmd_table; *entryp != NULL; entryp++)
|
for (entryp = cmd_table; *entryp != NULL; entryp++) {
|
||||||
ctx->print(ctx, "%s %s", (*entryp)->name, (*entryp)->usage);
|
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);
|
return (CMD_RETURN_NORMAL);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user