diff --git a/packages/app-desktop/gui/NoteEditor/NoteBody/TinyMCE/TinyMCE.tsx b/packages/app-desktop/gui/NoteEditor/NoteBody/TinyMCE/TinyMCE.tsx index b387b92ae68..f5d0df4bc8d 100644 --- a/packages/app-desktop/gui/NoteEditor/NoteBody/TinyMCE/TinyMCE.tsx +++ b/packages/app-desktop/gui/NoteEditor/NoteBody/TinyMCE/TinyMCE.tsx @@ -734,6 +734,10 @@ const TinyMCE = (props: NoteBodyEditorProps, ref: any) => { }); } + editor.addShortcut('Meta+Shift+7', '', () => editor.execCommand('InsertOrderedList')); + editor.addShortcut('Meta+Shift+8', '', () => editor.execCommand('InsertUnorderedList')); + editor.addShortcut('Meta+Shift+9', '', () => editor.execCommand('InsertJoplinChecklist')); + // setupContextMenu(editor); // TODO: remove event on unmount?