mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
17 lines
521 B
TypeScript
17 lines
521 B
TypeScript
|
import CommandService, { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
||
|
import { _ } from '@joplin/lib/locale';
|
||
|
import { UiType } from './gotoAnything';
|
||
|
|
||
|
export const declaration: CommandDeclaration = {
|
||
|
name: 'commandPalette',
|
||
|
label: () => _('Command palette...'),
|
||
|
};
|
||
|
|
||
|
export const runtime = (): CommandRuntime => {
|
||
|
return {
|
||
|
execute: async (_context: CommandContext) => {
|
||
|
void CommandService.instance().execute('gotoAnything', UiType.CommandPalette);
|
||
|
},
|
||
|
};
|
||
|
};
|