summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src/components/settings-keybinds.tsx
diff options
context:
space:
mode:
authorRahul A Mistry <[email protected]>2026-02-07 16:32:40 +0530
committerGitHub <[email protected]>2026-02-07 05:02:40 -0600
commitb5b93aea425d44a0f49d37eb22d29b98616b7392 (patch)
treeab79d1e5decfb854b661fadfa302ee8a54936d14 /packages/app/src/components/settings-keybinds.tsx
parent4abf8049c99b6adc0f130e28d0126f59b3869e49 (diff)
downloadopencode-b5b93aea425d44a0f49d37eb22d29b98616b7392.tar.gz
opencode-b5b93aea425d44a0f49d37eb22d29b98616b7392.zip
fix(app): toggle file tree and review panel better ux (#12481)
Diffstat (limited to 'packages/app/src/components/settings-keybinds.tsx')
-rw-r--r--packages/app/src/components/settings-keybinds.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/app/src/components/settings-keybinds.tsx b/packages/app/src/components/settings-keybinds.tsx
index a24db13f5..79e000f37 100644
--- a/packages/app/src/components/settings-keybinds.tsx
+++ b/packages/app/src/components/settings-keybinds.tsx
@@ -44,7 +44,7 @@ function groupFor(id: string): KeybindGroup {
if (id === PALETTE_ID) return "General"
if (id.startsWith("terminal.")) return "Terminal"
if (id.startsWith("model.") || id.startsWith("agent.") || id.startsWith("mcp.")) return "Model and agent"
- if (id.startsWith("file.")) return "Navigation"
+ if (id.startsWith("file.") || id.startsWith("fileTree.")) return "Navigation"
if (id.startsWith("prompt.")) return "Prompt"
if (
id.startsWith("session.") ||