summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 2ae37e2c2..0f0d980b6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -170,6 +170,8 @@ fn main() {
})) = opts.command
{
commands::list_sessions(no_formatting, short);
+ } else if let Some(Command::Sessions(Sessions::ListAliases)) = opts.command {
+ commands::list_aliases(opts);
} else if let Some(Command::Sessions(Sessions::KillAllSessions { yes })) = opts.command {
commands::kill_all_sessions(yes);
} else if let Some(Command::Sessions(Sessions::KillSession { ref target_session })) =