feat(app): add Cmd+[/] keybinds for session history navigation (#12880)

This commit is contained in:
Kit Langton
2026-02-09 20:25:42 -05:00
committed by GitHub
parent 705200e199
commit 949f61075f
2 changed files with 4 additions and 2 deletions

View File

@@ -68,12 +68,14 @@ export function Titlebar() {
id: "common.goBack",
title: language.t("common.goBack"),
category: language.t("command.category.view"),
keybind: "mod+[",
onSelect: back,
},
{
id: "common.goForward",
title: language.t("common.goForward"),
category: language.t("command.category.view"),
keybind: "mod+]",
onSelect: forward,
},
])