skip to Main Content

Visual Studio Code – how to debug golang in vscode

platform: windows 10 golang version : go1.21.1 windows/amd64 dlv version : Delve Debugger Version: 1.21.1 launch json: "version": "0.2.0", "configurations": [ { "name": "Launch Package", "type": "go", "request": "launch", "mode": "debug", "program": "${fileDirname}" } ] when I start debug with…

VIEW QUESTION

Visual Studio Code – How can I change the color of the primary sidebar's outline in VS Code?

How do I make the outline around the Explorer View a different color? outline Here is my .vscode/settings.json file: { "workbench.colorCustomizations": { "tab.activeBorderTop": "#fc7c05", "statusBar.background": "#85410165", "activityBar.activeBorder": "#fc7c05", "statusBarItem.remoteBackground": "#fc7c05", "terminal.tab.activeBorder": "#fc7c05", "activityBarBadge.background": "#fc7c05", "menu.selectionBackground": "#ff7b0074", "list.focusAndSelectionOutline": "#fc7c05", "list.activeSelectionBackground": "#803f0243"…

VIEW QUESTION
Back To Top
Search