mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-02 14:30:29 +00:00
fix(app): move message navigation off cmd+arrow (#18728)
This commit is contained in:
parent
3ea72aec21
commit
d1c49ba210
2 changed files with 21 additions and 2 deletions
|
|
@ -333,7 +333,7 @@ export const useSessionCommands = (actions: SessionCommandContext) => {
|
|||
id: "message.previous",
|
||||
title: language.t("command.message.previous"),
|
||||
description: language.t("command.message.previous.description"),
|
||||
keybind: "mod+arrowup",
|
||||
keybind: "mod+alt+[",
|
||||
disabled: !params.id,
|
||||
onSelect: () => navigateMessageByOffset(-1),
|
||||
}),
|
||||
|
|
@ -341,7 +341,7 @@ export const useSessionCommands = (actions: SessionCommandContext) => {
|
|||
id: "message.next",
|
||||
title: language.t("command.message.next"),
|
||||
description: language.t("command.message.next.description"),
|
||||
keybind: "mod+arrowdown",
|
||||
keybind: "mod+alt+]",
|
||||
disabled: !params.id,
|
||||
onSelect: () => navigateMessageByOffset(1),
|
||||
}),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue