mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
3a57cfea02
- Commands "enabled" state is now expressed using a "when-clause" like in VSCode - A command palette has been added to the Tools menu
20 lines
451 B
TypeScript
20 lines
451 B
TypeScript
import { utils, CommandRuntime, CommandDeclaration } from '../services/CommandService';
|
|
import { _ } from 'lib/locale';
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
name: 'historyBackward',
|
|
label: () => _('Back'),
|
|
iconName: 'icon-back',
|
|
};
|
|
|
|
export const runtime = ():CommandRuntime => {
|
|
return {
|
|
execute: async () => {
|
|
utils.store.dispatch({
|
|
type: 'HISTORY_BACKWARD',
|
|
});
|
|
},
|
|
enabledCondition: 'historyhasBackwardNotes',
|
|
};
|
|
};
|