hide resume until it's complete (#3218)

Hide resume functionality until it's fully done.
This commit is contained in:
Ahmed Ibrahim
2025-09-05 13:12:46 -07:00
committed by GitHub
parent 5775174ec2
commit c11696f6b1
2 changed files with 10 additions and 2 deletions

View File

@@ -20,7 +20,12 @@ pub struct Cli {
/// - Mutually exclusive with `--continue`.
/// - The picker displays recent sessions and a preview of the first real user
/// message to help you select the right one.
#[arg(long = "resume", default_value_t = false, conflicts_with = "continue")]
#[arg(
long = "resume",
default_value_t = false,
conflicts_with = "continue",
hide = true
)]
pub resume: bool,
/// Continue the most recent conversation without showing the picker.
@@ -33,7 +38,8 @@ pub struct Cli {
id = "continue",
long = "continue",
default_value_t = false,
conflicts_with = "resume"
conflicts_with = "resume",
hide = true
)]
pub r#continue: bool,

View File

@@ -10,6 +10,7 @@
Key flags: `--model/-m`, `--ask-for-approval/-a`.
<!--
Resume options:
- `--resume`: open an interactive picker of recent sessions (shows a preview of the first real user message). Conflicts with `--continue`.
@@ -21,6 +22,7 @@ Examples:
codex --resume
codex --continue
```
-->
### Running with a prompt as input