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,
},
])

View File

@@ -208,8 +208,8 @@ export const dict = {
"model.tooltip.context": "Context limit {{limit}}",
"common.search.placeholder": "Search",
"common.goBack": "Back",
"common.goForward": "Forward",
"common.goBack": "Navigate back",
"common.goForward": "Navigate forward",
"common.loading": "Loading",
"common.loading.ellipsis": "...",
"common.cancel": "Cancel",