# vscode-action-buttons

> A vscode plugin to append action buttons in the status bar.

Latest version **0.1.0** (published 2020-07-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install vscode-action-buttons
pnpm add vscode-action-buttons
yarn add vscode-action-buttons
bun add vscode-action-buttons
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2020-07-16 |
| First published | 2020-07-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 25.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| GitHub stars | 5 |
| Maintainers | bubkoo |

## Links

- npm: https://www.npmjs.com/package/vscode-action-buttons
- Repository: https://github.com/bubkoo/vscode-action-buttons
- npm.io page: https://npm.io/package/vscode-action-buttons

## Recent versions

- 0.1.0 (latest) — 2020-07-16

## 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
        }
      ]
    }
}
```

---
_Source: https://npm.io/package/vscode-action-buttons · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
