I want to use autocomplete but cannot get gocode ( https://github.com/nsf/gocode ).
The editor of my choice is the parentheses (using https://github.com/David5i6/Brackets-Go-IDE ). But I can not get it to work with vim + vundle or komodo.
- GOPATH was not installed by installing GO
- I installed GOPATH and PATH in the same way as the specified instruction, and can work fine on go projects.
My folder structure:
~/Documents/goDev/bin/ test gocode /src/ github/ jonas/ test/ test.go nfs/ gocode/ ...
From my .profile:
export GOPATH=/Users/jonas/Documents/goDev export PATH=$PATH:/usr/local/bin:/usr/local/go/bin/:/Users/jonas/Documents/goDev/bin
With go env, I get:
... GOPATH="/Users/jonas/Documents/goDev" ... GOROOT="/usr/local/go" GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64" ...
Is there something I did with my setup? Or may I have missed something else?
Thanks in advance
go ide
J0-nas
source share