Trigger Task on SaveNormally you would use a watch task to make something happen when a file changes, but sometimes you just need a task to run once on save. This extension lets you do that. When the task is running a status bar item is shown with the task name. Clicking this will stop the task. Note: This extension is for triggering vscode tasks, as defined in your InstallingYou can install the latest version of the extension via the Visual Studio Marketplace here. Source CodeThe source code is available on GitHub here. ConfigurationTask names are associated with filename globs, e.g.
In the example above, the task build will be triggered when any .h or .cpp files, except for ModuleVersion.h, are saved in the src subfolder. The task test will be triggered when any .h or .cpp files are saved in any subfolders ending with -ut. Note: The array of globs for each task is processed in order and stops as soon as there is a match. Exclude globs (starting with Environment variables and the vscode variable The target task can also be overridden. In this case, any of the globs that match will trigger the selected task instead. This allows a build task to be run when changing a file in a dependent folder, for example. The selected task can be set using the Trigger Task On Save: Select Task command or by setting:
When a task has been selected, it is indicated on the status bar with a star. The selected task can be cleared by clicking the status bar item or using the command Trigger Task On Save: Clear Selected Task. The extension can be temporarily enabled/disabled with:
A delay can be specified (in milliseconds) before triggering the task if you are experiencing problems with formatter timeouts, for example. If the task is re-triggered during the delay, the delay is reset.
There is also an option restart the task if it is currently executing:
Notifications of tasks starting and ending can be enabled with:
If required, a status bar item allowing the extension to be enabled/disabled can be shown by setting this to true:
The extension can also be configured to highlight an area of the main window when a task is successful (returns an exit code of 0) or fails (returns a non-zero exit code). This works by overriding a value in your workspace settings. The override is cleared when the task is restarted. The colours are only overridden if defined, so you use either or both. Note: If you have already set a value in your workspace settings, it will be lost. This is configured using this example:
The value of resultIndicator can be any of the workbench colour customizations (see https://code.visualstudio.com/api/references/theme-color). The result indication is also cleared automatically after an interval. This can be changed by setting
to the number of seconds required, or disabled by setting to 0. CommandsThe following commands are provided, which can be accessed from the command palette (F1), or bound to keys:
Known IssuesWhen restarting tasks, there may be a delay before the running task finishes and the task restarts. This is necessary to avoid an error that gets generated (see issue 53331). Hopefully when this issue is fixed, the delay will no longer be apparent. CreditsThis is my first extension and is loosely based on Format On Save. |