Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Change hotkeys to use cmd/ctrl
Browse files Browse the repository at this point in the history
  • Loading branch information
akirk committed Dec 12, 2023
1 parent 4bd8811 commit a47a2c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/accessibility/KeyboardShortcuts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,6 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = {
},
[KeyBindingAction.EditPrevMessage]: {
default: {
ctrlOrCmdKey: true,
key: Key.ARROW_UP,
},
displayName: _td("keyboard|navigate_prev_message_edit"),
Expand Down Expand Up @@ -567,12 +566,14 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = {
},
[KeyBindingAction.SelectNextMessage]: {
default: {
ctrlOrCmdKey: true,
key: Key.ARROW_DOWN,
},
displayName: _td("keyboard|next_message"),
},
[KeyBindingAction.SelectPrevMessage]: {
default: {
ctrlOrCmdKey: true,
key: Key.ARROW_UP,
},
displayName: _td("keyboard|prev_message"),
Expand Down

0 comments on commit a47a2c0

Please sign in to comment.