Skip to content

Commit cdde32b

Browse files
elibenhyangah
authored andcommitted
debug: make launch configuration name consistent with docs and other launch.json
The documentation for launching a debug adapter (https://github.com/golang/vscode-go/blob/master/docs/debug-adapter.md) says "Choose the Launch as server" debug configuration. However, the launch.json in the debugAdapter dir names this configuration "debug-debugger". Fix the configuration name to be consistent with documentation, and with other launch.json files (the root launch.json also has this configuration named "Launch as server"). Change-Id: Ic0734174956a9907e16a74c42efced8ab17f43bb GitHub-Last-Rev: 87950df GitHub-Pull-Request: #224 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/237917 Reviewed-by: Hyang-Ah Hana Kim <[email protected]>
1 parent 47f1b00 commit cdde32b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/debugAdapter/.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "0.2.0",
33
"configurations": [
44
{
5-
"name": "debug-debugger",
5+
"name": "Launch as server",
66
"type": "node",
77
"request": "launch",
88
"program": "${workspaceFolder}/../../out/src/debugAdapter/goDebug.js",

0 commit comments

Comments
 (0)