diff --git a/src/components/keyboard-shortcuts-help.jsx b/src/components/keyboard-shortcuts-help.jsx index 52bca713..df4e437b 100644 --- a/src/components/keyboard-shortcuts-help.jsx +++ b/src/components/keyboard-shortcuts-help.jsx @@ -117,6 +117,15 @@ export default memo(function KeyboardShortcutsHelp() { action: 'Compose new post', keys: c, }, + { + action: 'Compose new post (new window)', + className: 'insignificant', + keys: ( + <> + Shift + c + > + ), + }, { action: 'Send post', keys: ( @@ -134,6 +143,15 @@ export default memo(function KeyboardShortcutsHelp() { action: 'Reply', keys: r, }, + { + action: 'Reply (new window)', + className: 'insignificant', + keys: ( + <> + Shift + r + > + ), + }, { action: 'Like (favourite)', keys: ( @@ -162,9 +180,9 @@ export default memo(function KeyboardShortcutsHelp() { > ), }, - ].map(({ action, keys }) => ( + ].map(({ action, className, keys }) => (