microsoft / vscode-arduino

Visual Studio Code extension for Arduino

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Verify by command line

iharshadec opened this issue · comments

Is there any way to send Verify command other than shortcut Keyboard Ctrl+Shift+R or Ctrl+Shift+P and selecting verify?

I wanted to put Verify at the down of the VS Code like this
image

And to do this I am using Action Buttons

    "actionButtons": {
        "commands": [
            {
                "name": "Verify",
                "color": "white",
                "command": "Verify"
            }
        ],
        "defaultColor": "white",
        "reloadButton": "↻",
        "loadNpmCommands": false
    }
}

But I am not sure what should I use under command so it executes the same command we do using Ctrl+Shift+ R ?