mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
48 lines
897 B
TypeScript
48 lines
897 B
TypeScript
export default function() {
|
|
return [
|
|
'attachFile',
|
|
'copyDevCommand',
|
|
'exportPdf',
|
|
'focusElementNoteBody',
|
|
'focusElementNoteList',
|
|
'focusElementNoteTitle',
|
|
'focusElementSideBar',
|
|
'focusSearch',
|
|
'historyBackward',
|
|
'historyForward',
|
|
'insertDateTime',
|
|
'newFolder',
|
|
'newNote',
|
|
'newSubFolder',
|
|
'newTodo',
|
|
'openProfileDirectory',
|
|
'print',
|
|
'setTags',
|
|
'showLocalSearch',
|
|
'showNoteContentProperties',
|
|
'synchronize',
|
|
'textBold',
|
|
'textCode',
|
|
'textCopy',
|
|
'textCut',
|
|
'textItalic',
|
|
'textLink',
|
|
'textPaste',
|
|
'textSelectAll',
|
|
'toggleExternalEditing',
|
|
'toggleLayoutMoveMode',
|
|
'toggleNoteList',
|
|
'toggleSideBar',
|
|
'toggleVisiblePanes',
|
|
'editor.deleteLine',
|
|
'editor.undo',
|
|
'editor.redo',
|
|
'editor.indentLess',
|
|
'editor.indentMore',
|
|
'editor.toggleComment',
|
|
'editor.sortSelectedLines',
|
|
'editor.swapLineUp',
|
|
'editor.swapLineDown',
|
|
];
|
|
}
|