Delve's maxGoroutines should be configurable via go.delveConfig #2041
Labels
debug/callstack
callstack handling related debug issues
Debug
Issues related to the debugging functionality of the extension.
FeatureRequest
Milestone
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)
, eithercount
(maxGoroutines
) should be configurable ingo.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.The text was updated successfully, but these errors were encountered: