Options
All
  • Public
  • Public/Protected
  • All
Menu

joplin.commands

This class allows executing or registering new Joplin commands. Commands can be executed or associated with toolbar buttons or menu items.

View the demo plugin

Executing Joplin's internal commands

It is also possible to execute internal Joplin's commands which, as of now, are not well documented. You can find the list directly on GitHub though at the following locations:

To view what arguments are supported, you can open any of these files and look at the execute() command.

Index

Methods

Methods

execute

  • execute(commandName: string, ...args: any[]): Promise<any | void>
  • desktop Executes the given command. The props are the arguments passed to the command, and they vary based on the command

    // Create a new note in the current notebook:
    await joplin.commands.execute('newNote');
    
    // Create a new sub-notebook under the provided notebook
    // Note: internally, notebooks are called "folders".
    await joplin.commands.execute('newFolder', "SOME_FOLDER_ID");

    Parameters

    • commandName: string
    • Rest ...args: any[]

register

  • register(command: Command): Promise<void>
  • desktop Registers a new command.

    // Register a new commmand called "testCommand1"
    
    await joplin.commands.register({
        name: 'testCommand1',
        label: 'My Test Command 1',
        iconName: 'fas fa-music',
        execute: () => {
            alert('Testing plugin command 1');
        },
    });

    Parameters