From d42d11ac72099b1b06d4db046161c5417c0aa2b2 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Sat, 3 Jan 2026 21:44:58 +0000 Subject: [PATCH] fix(tui): add missing `theme_list` keybind Without this patch, users could not quickly access the theme switcher via key bindings. This is a problem because `theme_list` was already documented as working in `packages/web/src/content/docs/keybinds.mdx`. So add the `theme_list` keybind to the Switch theme menu option, allowing binding of quick keyboard access to theme switching as documented. --- packages/opencode/src/cli/cmd/tui/app.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/opencode/src/cli/cmd/tui/app.tsx b/packages/opencode/src/cli/cmd/tui/app.tsx index 006d04f1cb3d..91be02bb9786 100644 --- a/packages/opencode/src/cli/cmd/tui/app.tsx +++ b/packages/opencode/src/cli/cmd/tui/app.tsx @@ -412,6 +412,7 @@ function App() { { title: "Switch theme", value: "theme.switch", + keybind: "theme_list", onSelect: () => { dialog.replace(() => ) },