Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 694 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 694 Bytes

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!"
        }
    ]
}