You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-03 23:50:33 +02:00
16 lines
410 B
TypeScript
16 lines
410 B
TypeScript
import { CommandRuntime, CommandDeclaration } from '../../../lib/services/CommandService';
|
|
import { _ } from 'lib/locale';
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
name: 'focusSearch',
|
|
label: () => _('Search in all the notes'),
|
|
};
|
|
|
|
export const runtime = (searchBarRef:any):CommandRuntime => {
|
|
return {
|
|
execute: async () => {
|
|
if (searchBarRef.current) searchBarRef.current.focus();
|
|
},
|
|
};
|
|
};
|