feat: use -F alias for --fork-session in both commands for consistency

This commit is contained in:
Ariane Emory
2026-01-30 11:11:44 -05:00
parent 69f4c91e05
commit 1357e273e3
2 changed files with 2 additions and 1 deletions

View File

@@ -51,6 +51,7 @@ export const RunCommand = cmd({
type: "string",
})
.option("fork-session", {
alias: ["F"],
describe: "fork the session before continuing (requires --continue or --session)",
type: "boolean",
})

View File

@@ -65,7 +65,7 @@ export const TuiThreadCommand = cmd({
describe: "session id to continue",
})
.option("fork-session", {
alias: ["f"],
alias: ["F"],
type: "boolean",
describe: "fork the session when continuing (use with --continue or --session)",
})