hide resume until it's complete (#3218)
Hide resume functionality until it's fully done.
This commit is contained in:
@@ -20,7 +20,12 @@ pub struct Cli {
|
|||||||
/// - Mutually exclusive with `--continue`.
|
/// - Mutually exclusive with `--continue`.
|
||||||
/// - The picker displays recent sessions and a preview of the first real user
|
/// - The picker displays recent sessions and a preview of the first real user
|
||||||
/// message to help you select the right one.
|
/// 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,
|
pub resume: bool,
|
||||||
|
|
||||||
/// Continue the most recent conversation without showing the picker.
|
/// Continue the most recent conversation without showing the picker.
|
||||||
@@ -33,7 +38,8 @@ pub struct Cli {
|
|||||||
id = "continue",
|
id = "continue",
|
||||||
long = "continue",
|
long = "continue",
|
||||||
default_value_t = false,
|
default_value_t = false,
|
||||||
conflicts_with = "resume"
|
conflicts_with = "resume",
|
||||||
|
hide = true
|
||||||
)]
|
)]
|
||||||
pub r#continue: bool,
|
pub r#continue: bool,
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
Key flags: `--model/-m`, `--ask-for-approval/-a`.
|
Key flags: `--model/-m`, `--ask-for-approval/-a`.
|
||||||
|
|
||||||
|
<!--
|
||||||
Resume options:
|
Resume options:
|
||||||
|
|
||||||
- `--resume`: open an interactive picker of recent sessions (shows a preview of the first real user message). Conflicts with `--continue`.
|
- `--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 --resume
|
||||||
codex --continue
|
codex --continue
|
||||||
```
|
```
|
||||||
|
-->
|
||||||
|
|
||||||
### Running with a prompt as input
|
### Running with a prompt as input
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user