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