feat: remove ModePicker overlay and related commands; update mode handling and documentation

This commit is contained in:
asepharyana
2026-07-12 02:14:40 +07:00
parent 662e269f2c
commit 32155f8ea8
9 changed files with 3 additions and 110 deletions
-8
View File
@@ -75,14 +75,6 @@ const COMMANDS: &[&str] = &[
"/lesson import",
"/lesson accept",
"/lesson reject",
"/mode chat",
"/mode bash",
"/mode help",
"/mode settings",
"/mode effort",
"/mode mcp",
"/mode rewind",
"/mode editor",
"/login",
"/login zen",
"/login openai",
+1 -1
View File
@@ -68,7 +68,7 @@ impl AppStateRest {
.map(|n| n.to_string_lossy().to_string())
.unwrap_or_default();
AppStateRest {
mode: AgentMode::Normal,
mode: AgentMode::Auto,
settings,
app_config,
workspace_roots,
-1
View File
@@ -87,7 +87,6 @@ pub enum Overlay {
Loading,
ModelSelector,
ClearConfirm,
ModePicker,
LoginPicker,
}