Skip to content

Commit 893333d

Browse files
committed
launch.json: disable other extensions
When running Launch Extension, disable other extensions (e.g. golang.go) which will conflict with golang.go-nightly. Change-Id: Ic983e3431d4a3fca62a6a5ab8e041c6a6d0a3a15 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/237681 Reviewed-by: Rebecca Stambler <rstambler@golang.org>
1 parent ae46829 commit 893333d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.vscode/launch.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
// path to VSCode executable
1010
"runtimeExecutable": "${execPath}",
1111
"args": [
12-
"--extensionDevelopmentPath=${workspaceFolder}"
12+
"--extensionDevelopmentPath=${workspaceFolder}",
13+
"--disable-extensions"
1314
],
1415
"stopOnEntry": false,
1516
"sourceMaps": true,

0 commit comments

Comments
 (0)