polinasok
polinasok
Once #1873 is in, using hello-world program from `hello` directory from vscode, set a breakpoint in the editor. Then start the dlv server from the symbolic link directory. ``` hello1_ln$...
Branching out of the follow-up discussion on https://github.com/golang/vscode-go/issues/1459#issuecomment-873969040: Option 1: ``` b: []uint8 len: 5, cap: 5, [72,101,108,108,111] string(): "Hello" %X: [68,65,6C,6C,6F] [0]: 104 [1]: 101 [2]: 108 [3]: 108...
- [ ] #2168* - [ ] https://github.com/go-delve/delve/issues/2958 - [ ] prompt users about the new dlv-dap option and/or provide a way to change the default with one click at...
If a client connection is closed while a running command is in progress, that command is not interrupted, so the auto-resume goroutine continues as if nothing has happened. The auto-resume...
Upstream dependency at https://github.com/microsoft/vscode/issues/134412 is in, so we can now provide this in our DA to give people more disconnect options. ``` - disconnect = leaves debugger and target running...
I have a draft of a fix, but would like to discuss first if the current behavior even needs fixing. Current behavior: * local attach to pid or remote attach...
[Source request](https://microsoft.github.io/debug-adapter-protocol/specification#Requests_Source) is not well documented, so it has not been clear to us when to expect it nor how to handle it. Microsoft devs once told me "This is...
Terminal client offers a special flag `exit -c` to quit the client and resume execution. Vscode UI doesn't offer nuanced disconnect options (https://github.com/microsoft/vscode/issues/134412). Instead a user must first click Continue...
I am noticing this in the context of dlv-dap, but this is true for other modes as well (e.g. build flags with exec, attach, etc). Also, as new flags get...
I keep thinking that `dlv config`, not `dlv config -list` is the command to list all current configuration values. With [email protected]:  With [email protected] and dlv@latest:  @suzmue