From 0149d460e3743161e0518a3350a0bcb85cb1434e Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" <219766164+opencode-agent[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 16:25:42 +0800 Subject: [PATCH] feat(app): add Chrome tab cycle shortcuts (#33838) --- packages/app/src/components/titlebar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app/src/components/titlebar.tsx b/packages/app/src/components/titlebar.tsx index 186e575625..193224f5c6 100644 --- a/packages/app/src/components/titlebar.tsx +++ b/packages/app/src/components/titlebar.tsx @@ -372,7 +372,7 @@ export function Titlebar(props: { update?: TitlebarUpdate }) { id: `tab.prev`, category: "tab", title: "", - keybind: `mod+option+ArrowLeft`, + keybind: `mod+option+ArrowLeft,ctrl+shift+tab`, hidden: true, onSelect: () => { let index = tabsStore.findIndex((tab) => tab === currentTab()) @@ -389,7 +389,7 @@ export function Titlebar(props: { update?: TitlebarUpdate }) { id: `tab.next`, category: "tab", title: "", - keybind: `mod+option+ArrowRight`, + keybind: `mod+option+ArrowRight,ctrl+tab`, hidden: true, onSelect: () => { let index = tabsStore.findIndex((tab) => tab === currentTab())