vscode-go
vscode-go copied to clipboard
Go extension for Visual Studio Code
**Is your feature request related to a problem? Please describe.** $ `which go` /usr/local/bin/go $ `ll $(which go)` lrwxr-xr-x 26 ansidev 14 Apr 09:43 /usr/local/bin/go -> ../Cellar/go/1.18.1/bin/go (Go was installed...
`--redirect` or `-r` flag is ignored in `dlv dap` which is understandable because `dlv dap` won't know what it will do until the launch/attach request arrives. One option is to...
**Is your feature request related to a problem? Please describe.** When debugging issues that involve large numbers of goroutines, VSCode will output `Too many goroutines, only loaded 1024`. It would...
### What version of Go, VS Code & VS Code Go extension are you using? Version Information * Run `go version` to get version of Go from _the VS Code...
### What version of Go, VS Code & VS Code Go extension are you using? Version Information * Run `go version` to get version of Go from _the VS Code...
Currently this extension is enabled automatically if there is a go file in the workspace. In mono-repo cases, or where users use `go` as supporting languages (e.g. scripts, etc), this...
according to https://github.com/golang/vscode-go/blob/master/docs/debugging.md#launch-configurations `logOutput` should be able to accept a comma-separated list, and `dlv help log` also said the same.  https://github.com/golang/vscode-go/blob/master/package.json#L552 is...
I want to capture the OS signal and do some exit jobs when I terminate the vscode golang debugger. I have code as below: ```go sigalChan := make(chan os.Signal, 1)...
See the discussion on https://github.com/microsoft/vscode-go/issues/3195. We should improve the error reporting for this command and consider alternative ways for how this could work in module mode.
go version: go1.18beta1 (but the problem applies to older versions of go too) dlv version: 2f13672765fe When a binary is built with `-trimpath`, part of file paths are removed from...