We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64047b0 commit 10757b4Copy full SHA for 10757b4
src/accessibility/KeyboardShortcuts.ts
@@ -521,7 +521,8 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = {
521
[KeyBindingAction.GoToHome]: {
522
default: {
523
ctrlKey: true,
524
- altKey: true,
+ altKey: !IS_MAC,
525
+ shiftKey: IS_MAC,
526
key: Key.H,
527
},
528
displayName: _td("keyboard|go_home_view"),
@@ -586,7 +587,7 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = {
586
587
588
589
shiftKey: true,
- key: Key.H,
590
+ key: Key.J,
591
592
displayName: _td("keyboard|toggle_hidden_events"),
593
0 commit comments