Desktop: Rich Text Editor: Allow toggling bulleted and numbered lists from the command palette (#10559)

pull/9854/head
Henry Heino 2024-06-10 14:26:14 -07:00 committed by GitHub
parent 99b36cbff1
commit 97d15bb26a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,8 @@ export const joplinCommandToTinyMceCommands: JoplinCommandToTinyMceCommands = {
'textItalic': { name: 'mceToggleFormat', value: 'italic' },
'textCode': { name: 'mceToggleFormat', value: 'code' },
'textLink': { name: 'mceLink' },
'textBulletedList': { name: 'InsertUnorderedList' },
'textNumberedList': { name: 'InsertOrderedList' },
'search': { name: 'SearchReplace' },
'attachFile': { name: 'joplinAttach' },
'insertDateTime': true,