1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/lib/services/commands/focusEditorIfEditorCommand.ts

9 lines
300 B
TypeScript

import CommandService from '../CommandService';
import isEditorCommand from './isEditorCommand';
export default async function focusEditorIfEditorCommand(commandName: string, commandService: CommandService) {
if (isEditorCommand(commandName)) {
await commandService.execute('editor.focus');
}
}