From 922fd6ca5ce2554ab4650b0d5851000aeee07c69 Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Tue, 10 Jan 2023 15:39:31 +0100 Subject: [PATCH] add Tooltipps and more Commands --- .vscode/settings.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 330a1092f..0188fe67c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,18 @@ { "platformio-ide.toolbar": [ + { + "text": "$(home)", + "tooltip": "PlatformIO: Home", + "commands": [ + { + "id": "platformio-ide.runPIOCoreCommand", + "args": "pio home" + } + ] + }, { "text": "$(trash)", + "tooltip": "PlatformIO: Clean All", "commands": [ { "id": "workbench.action.tasks.runTask", @@ -11,6 +22,7 @@ }, { "text": "$(check)", + "tooltip": "PlatformIO: Build", "commands": [ { "id": "workbench.action.tasks.runTask", @@ -20,6 +32,7 @@ }, { "text": "$(zap)", + "tooltip": "PlatformIO: Build and Upload", "commands": [ { "id": "workbench.action.tasks.runTask", @@ -29,6 +42,7 @@ }, { "text": "$(flame)", + "tooltip": "PlatformIO: Build, Erase and Upload", "commands": [ { "id": "platformio-ide.runPIOCoreCommand", @@ -38,12 +52,24 @@ }, { "text": "$(device-desktop)", + "tooltip": "PlatformIO: Serial Monitor", "commands": [ { "id": "workbench.action.tasks.runTask", "args": "PlatformIO: Monitor" } ] + }, + { + "text": "$(refresh)", + "tooltip": "PlatformIO: Rebuild IntelliSense Index", + "commands": [ + { + "id": "workbench.action.tasks.runTask", + "args": "PlatformIO: Rebuild IntelliSense Index" + } + ] } ] } +