VSCode Action Buttons
A vscode plugin to append action buttons in the status bar. Actions can be loaded scripts from
package.json
or custom defined.
Features
- Auto load
scripts
actions frompackage.json
whenuseScripts
istrue
. - Auto detect monorepo change when
monorepo
option istrue
. - Support custom defined actions.
Configuration
{
"actionButtons": {
"reloadButton": null,
"defaultColor": "white",
"useScripts": true,
"npmClient": "npm",
"monorepo": true,
"commands": [
{
"name": "command name",
"color": "#af565c",
"command": "cargo run ${file}",
"singleInstance": true
}
]
}
}