https://github.com/bubkoo/vscode-action-buttons
A vscode plugin to append action buttons in the status bar.
https://github.com/bubkoo/vscode-action-buttons
Last synced: about 1 year ago
JSON representation
A vscode plugin to append action buttons in the status bar.
- Host: GitHub
- URL: https://github.com/bubkoo/vscode-action-buttons
- Owner: bubkoo
- Created: 2020-07-16T06:31:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T20:18:17.000Z (about 5 years ago)
- Last Synced: 2025-04-21T00:54:37.280Z (about 1 year ago)
- Language: TypeScript
- Size: 53.7 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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 from `package.json` when `useScripts` is `true`.
- Auto detect monorepo change when `monorepo` option is `true`.
- Support custom defined actions.
## Configuration
```json
{
"actionButtons": {
"reloadButton": null,
"defaultColor": "white",
"useScripts": true,
"npmClient": "npm",
"monorepo": true,
"commands": [
{
"name": "command name",
"color": "#af565c",
"command": "cargo run ${file}",
"singleInstance": true
}
]
}
}
```