diff --git a/src/components/keyboard-shortcuts-help.css b/src/components/keyboard-shortcuts-help.css index 1dbe69e..96bfdb9 100644 --- a/src/components/keyboard-shortcuts-help.css +++ b/src/components/keyboard-shortcuts-help.css @@ -1,5 +1,9 @@ #keyboard-shortcuts-help-container { table { + tr > * { + border-top: 1px solid var(--outline-color); + vertical-align: middle; + } th { font-weight: normal; text-align: start; diff --git a/src/components/keyboard-shortcuts-help.jsx b/src/components/keyboard-shortcuts-help.jsx index 0d876d9..0bf76da 100644 --- a/src/components/keyboard-shortcuts-help.jsx +++ b/src/components/keyboard-shortcuts-help.jsx @@ -84,23 +84,6 @@ export default function KeyboardShortcutsHelp() { ), }, - { - action: 'Search', - keys: /, - }, - { - action: 'Compose new post', - keys: c, - }, - { - action: 'Send post', - keys: ( - <> - Ctrl + Enter or +{' '} - Enter - - ), - }, { action: 'Open post details', keys: ( @@ -121,6 +104,31 @@ export default function KeyboardShortcutsHelp() { ), }, + { + action: 'Focus column in multi-column mode', + keys: ( + <> + 1 to 9 + + ), + }, + { + action: 'Compose new post', + keys: c, + }, + { + action: 'Send post', + keys: ( + <> + Ctrl + Enter or +{' '} + Enter + + ), + }, + { + action: 'Search', + keys: /, + }, ].map(({ action, keys }) => ( {action}