Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ All paths in the protocol should be absolute
Request/Response structs: `NewTerminalRequest` / `NewTerminalResponse`
Method names struct: `terminal_new: &'static str`

- Do not write any tests or docs at all!
- Add constants for the method names
- Add variants to {Agent|Client}{Request|Response} enums
- Add the methods to the Client/Agent impl of {Agent|Client}SideConnection in src/acp.rs
Expand Down
2 changes: 1 addition & 1 deletion src/agent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1568,7 +1568,7 @@ impl SessionConfigSelect {
/// placement). It MUST NOT be required for correctness. Clients MUST handle missing or unknown
/// categories gracefully (treat as `Other`).
#[cfg(feature = "unstable_session_config_options")]
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema, PartialEq, Eq)]
#[derive(Debug, Clone, Copy, Serialize, Deserialize, JsonSchema, PartialEq, Eq)]
#[serde(rename_all = "snake_case")]
#[non_exhaustive]
pub enum SessionConfigOptionCategory {
Expand Down