Skip to content

Commit

Permalink
♿️ (#2735): add missing shortcuts
Browse files Browse the repository at this point in the history
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
  • Loading branch information
Vinicius Reis committed Jul 29, 2022
1 parent eee1470 commit 8493451
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Menu/entries.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export default [
{
key: 'ordered-list',
label: t('text', 'Ordered list'),
keyChar: '9',
keyChar: '7',
keyModifiers: [MODIFIERS.Mod, MODIFIERS.Shift],
isActive: 'orderedList',
icon: FormatListNumbered,
Expand All @@ -212,6 +212,8 @@ export default [
{
key: 'task-list',
label: t('text', 'To-Do list'),
keyChar: '9',
keyModifiers: [MODIFIERS.Mod, MODIFIERS.Shift],
isActive: 'taskList',
icon: FormatListCheckbox,
action: (command) => command.toggleTaskList(),
Expand Down Expand Up @@ -278,6 +280,8 @@ export default [
{
key: 'code-block',
label: t('text', 'Code block'),
keyChar: 'c',
keyModifiers: [MODIFIERS.Mod, MODIFIERS.Alt],
isActive: 'codeBlock',
icon: CodeTags,
action: (command) => {
Expand Down

0 comments on commit 8493451

Please sign in to comment.