stuartthomson / vscode-buttons

Add custom buttons to VSCode

Home Page:https://marketplace.visualstudio.com/items?itemName=stuartthomson.vscode-buttons

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vscode-buttons

Do you want to be able to make buttons to do whatever you want? This extension will let you do that!

preview

Features

You will get some clickable buttons which will run customisable scripts, wow! To create buttons, create a file called 'buttons.jsonc' in the root directory of your workspace. It should look like:

{
    "buttons": [
        {
            "name": "MyButton",
            "script": "echo text > somefile.txt",
            "description": "Pointlessy write something to file."
        },
        {
            "name": "Button Without Description",
            "script": "echo I have no description!"
        }
    ]
}

About

Add custom buttons to VSCode

https://marketplace.visualstudio.com/items?itemName=stuartthomson.vscode-buttons

License:MIT License


Languages

Language:TypeScript 100.0%