Open
Description
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 be very nice to be able to configure this max limit.
Describe the solution you'd like
When vscode-go calls Debugger.Goroutines(start, count)
, either count
(maxGoroutines
) should be configurable in go.delveConfig
or there should be a "Load More..." button at the bottom of the list of 1024 goroutines that will load another 1024.
Describe alternatives you've considered
The only alternative is to use dlv
on the CLI.