feat(app): add Chrome tab cycle shortcuts (#33838)
This commit is contained in:
parent
5471d2a769
commit
0149d460e3
1 changed files with 2 additions and 2 deletions
|
|
@ -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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue