summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 0f0d980b6..eacefc8a7 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -167,9 +167,10 @@ fn main() {
if let Some(Command::Sessions(Sessions::ListSessions {
no_formatting,
short,
+ reverse,
})) = opts.command
{
- commands::list_sessions(no_formatting, short);
+ commands::list_sessions(no_formatting, short, reverse);
} 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 {