With Cron Tasks, you can schedule tasks/jobs to run periodically at fixed times, dates, or intervals.
"cronTasks.tasks": [
{
"at": "* * * * *",
"run": "cronTasks.showTestMessage",
},
],
at
: a cron expressionrun
: a vscode command
The extension always prints out debug information into the channel Cron Tasks
of the panel Output
(menu: View
/ Output
).
But if the property cronTasks.debug
(false
by default) is true
or "on"
, the extension will bring that channel to focus.
With "cronTasks.debug": "useBlank"
, the extension will print out debug information as usual but it won't call the final task.
The command cronTasks.showTestMessage
will display a simple notification.
The property cronTasks.notification
(minor
by default) indicates when to show the update notification.
Support this project by becoming a financial contributor.
ko-fi.com/daiyam | |
liberapay.com/daiyam/donate | |
paypal.me/daiyam99 |
Enjoy!