mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
console.log("Yesterday's Tasks Plugin loaded");
|
|
|
|
// Register a keyboard shortcut
|
|
PluginAPI.registerShortcut({
|
|
id: 'show_yesterday',
|
|
label: "Show Yesterday's Tasks",
|
|
onExec: function () {
|
|
PluginAPI.showIndexHtmlAsView();
|
|
},
|
|
});
|