From 0d3302ad04adc9315ad78650257cc6021b08797d Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Tue, 14 Mar 2023 16:59:06 +0100 Subject: [PATCH] Create settings.json (#18192) --- .vscode/settings.json | 59 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..b8138e019 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,59 @@ +{ + "platformio-ide.toolbar": [ + { + "text": "$(home)", + "tooltip": "PlatformIO: Home", + "commands": "platformio-ide.showHome" + }, + { + "text": "$(trash)", + "tooltip": "PlatformIO: Clean active environment", + "commands": "platformio-ide.clean" + }, + { + "text": "$(check)", + "tooltip": "PlatformIO: Build active environment", + "commands": "platformio-ide.build" + }, + { + "text": "$(zap)", + "tooltip": "PlatformIO: Build and Upload", + "commands": "platformio-ide.upload" + }, + { + "text": "$(flame)", + "tooltip": "PlatformIO: Build, Erase and Upload", + "commands": [ + { + "id": "platformio-ide.runPIOCoreCommand", + "args": "pio run -t erase_upload -e ${command:platformio-ide.activeEnvironment}" + } + ] + }, + { + "text": "$(error)", + "tooltip": "PlatformIO: Erase Flash", + "commands": [ + { + "id": "platformio-ide.runPIOCoreCommand", + "args": "pio run -t erase -e ${command:platformio-ide.activeEnvironment}" + } + ] + }, + { + "text": "$(device-desktop)", + "tooltip": "PlatformIO: Serial Monitor", + "commands": "platformio-ide.serialMonitor" + }, + { + "text": "$(terminal)", + "tooltip": "PlatformIO: New Terminal", + "commands": "platformio-ide.newTerminal" + }, + { + "text": "$(refresh)", + "tooltip": "PlatformIO: Rebuild IntelliSense Index", + "commands": "platformio-ide.rebuildProjectIndex" + } + ] + }