diff options
| author | Kit Langton <[email protected]> | 2026-02-09 20:25:42 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-02-09 19:25:42 -0600 |
| commit | 949f61075f44f28f7fbc3912d1ee814fe028c2cf (patch) | |
| tree | 574a7a3e8fb03cfec2201491b0d83edbceae093c /packages/app/src/components | |
| parent | 705200e199183cd802e2f4387b7a4ffc54793d5f (diff) | |
| download | opencode-949f61075f44f28f7fbc3912d1ee814fe028c2cf.tar.gz opencode-949f61075f44f28f7fbc3912d1ee814fe028c2cf.zip | |
feat(app): add Cmd+[/] keybinds for session history navigation (#12880)
Diffstat (limited to 'packages/app/src/components')
| -rw-r--r-- | packages/app/src/components/titlebar.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/app/src/components/titlebar.tsx b/packages/app/src/components/titlebar.tsx index 4a43a855c..e7b8066ae 100644 --- a/packages/app/src/components/titlebar.tsx +++ b/packages/app/src/components/titlebar.tsx @@ -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, }, ]) |
