Tasmota/.vscode/settings.json
Jason2866 2b0234c299
Tasmota VSCode settings.json (#336) (#17640)
* Tasmota VSC custom menu
2023-01-07 17:13:22 +01:00

50 lines
934 B
JSON

{
"platformio-ide.toolbar": [
{
"text": "$(trash)",
"commands": [
{
"id": "workbench.action.tasks.runTask",
"args": "PlatformIO: Clean All"
}
]
},
{
"text": "$(check)",
"commands": [
{
"id": "workbench.action.tasks.runTask",
"args": "PlatformIO: Build"
}
]
},
{
"text": "$(zap)",
"commands": [
{
"id": "workbench.action.tasks.runTask",
"args": "PlatformIO: Upload"
}
]
},
{
"text": "$(flame)",
"commands": [
{
"id": "platformio-ide.runPIOCoreCommand",
"args": "pio run -t erase_upload"
}
]
},
{
"text": "$(device-desktop)",
"commands": [
{
"id": "workbench.action.tasks.runTask",
"args": "PlatformIO: Monitor"
}
]
}
]
}