Re: [go-nuts] Delve repo moved to new location

2019-01-07 Thread deparker
That's correct, you should remove the old location and use the new one next time you update. On Friday, January 4, 2019 at 6:10:48 PM UTC-8, 邢玮 wrote: > > Does this mean that the next time I update delve I need to delete the > contents in the old folder, or maybe more adjustments? > > > > 发自我的小米

[go-nuts] Delve repo moved to new location

2019-01-04 Thread deparker
Hey all, Just wanted to mention that I've moved Delve off of my personal GitHub account and onto the organization go-delve (just `delve` was already taken, and the owner won't budge unfortunately...). Other than the location of the repo nothing else has changed. The new location is github.com/

[go-nuts] Re: Go, VSCODE IDE, Delve debugger: am having problem debugging my console app

2018-01-31 Thread deparker
Console app as in some sort of GUI application? Also, what actually happens when you run the app under Delve, like when you actually run `continue`? On Wednesday, January 31, 2018 at 6:50:02 AM UTC+1, evan wrote: > > i can debug my web app server code with no problem with the Go, VSCODE, > and

[go-nuts] Re: test debugging woes

2017-11-17 Thread deparker
You could try using Delve (https://github.com/derekparker/delve) to actually step through and inspect the process during execution to avoid having to put print statements everywhere. Similar to the Go command, you can run `dlv test` and begin stepping through your test binary. On Thursday, Nove