mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
18 lines
570 B
TypeScript
18 lines
570 B
TypeScript
import { CommandRuntime, CommandDeclaration } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'pasteAsText',
|
|
label: () => _('Paste as text'),
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
export const runtime = (comp: any): CommandRuntime => {
|
|
return {
|
|
execute: async () => {
|
|
comp.editorRef.current.execCommand({ name: 'pasteAsText' });
|
|
},
|
|
enabledCondition: 'oneNoteSelected && richTextEditorVisible',
|
|
};
|
|
};
|