Tasmota VSCode settings.json (#336) (#17640)

* Tasmota VSC custom menu
This commit is contained in:
Jason2866 2023-01-07 17:13:22 +01:00 committed by GitHub
parent dad059737d
commit 2b0234c299
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 0 deletions

1
.gitignore vendored
View File

@ -34,5 +34,6 @@ lib/libesp32/berry/berry
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/settings.json
*.bak
*.code-workspace

49
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,49 @@
{
"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"
}
]
}
]
}