This plugin provides a panel for defining a series of common commands that can be executed with one click.
This plugin is activated when the .vscode/commands.yaml file exists in your project which is the definition file of your commands.
interface ICommand {
/** Command name, the title displayed in the command palette */
name: string;
/** The title of the command execution in terminal panel */
title?: string;
/** Command description, hint description after the command name */
description?: string;
/** The prompt message when the mouse is hovered */
tooltip?: string;
/**
* The execution content of the command
* When an array given the commands will be executed one by one
*/
command?: string | string[];
/** Subtask list */
actions?: ICommand[];
}