Some Delve error messages ask users to run specific commands, for example when a type is not found (e.g. type assertion .(any)), users get a message
use 'types' for a list of valid types
These error messages are also shown to users of the DAP protocol (e.g. via VSCode). The way to invoke commands via DAP is to send them as evaluate request, escaped with dlv, like dlv help. These are configured here:
|
func debugCommands(s *Session) []command { |
As you can see, only three commands are supported, while command line Delve supports a few dozen. I think it would be good to support at least the ones we reference from error messages, like types.
- What version of Delve are you using (
dlv version)? 1.22.1
- What version of Go are you using? (
go version)? go1.23-20240419-RC02
- What operating system and processor architecture are you using? Linux, x86_64