James Wendel

Results 11 comments of James Wendel

At least for me, this patch doesn't work anymore with vendor directories. ``` D:\go\bin\godef.exe -debug -f main.go net.LookupIP 2017/01/23 21:33:57 exprType tuple:false pkg: *ast.SelectorExpr net.LookupIP [ 2017/01/23 21:33:57 exprType tuple:false...

Just adding that I've had this same problem. Here's a same program to demonstrate this issue ```go package main import ( "fmt" "net" "time" ) func main() { net.LookupIP("github.com") fmt.Println(time.Now())...

btw, when you test godef from the command line, add the "-debug" flag and it'll tell you what's going on. In my case, it looks like it was the import...

I've created a hack of a pull request to make tests work again here. Not ideal, but it at least got them running for me. See pull request #226

I'm wondering if the [go.work](https://go.dev/doc/tutorial/workspaces) file would be the way to go here. There could be the main library in one path, then all the tests in a separate path...

Digging around, looks like the hint library has not gotten very much attention: https://github.com/go-gorm/hints/commits/master/index_hint.go I can sort of understand why, as Postgres ignores them, and the impl here works for...

I believe it's because not all databases support the `$` syntax for named bindvars. While `?` is support by all DBs. What the `Named` function provides is just a way...

Just wondering, any update on this PR going in? I just stumbled on this as well. I'm happy to attempt moving this PR to v9 if @doug-martin thinks PR #373...

I'm interested in this as well. Being able to differentiate between page changes and SPA events is really nice.

Even fixing the above, I get the following error next: > Traceback (most recent call last): > File "goOracle in C:\Users\kyrra\AppData\Roaming\Sublime Text 3\Installed Packages\GoOracle.sublime-package", line 46, in on_done > File...