feat(app): add Chrome tab cycle shortcuts (#33838)

This commit is contained in:
opencode-agent[bot] 2026-06-25 16:25:42 +08:00 committed by GitHub
commit 0149d460e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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())