buaazp / Godef

Plugin of sublime to use godef to go to definitions accurately.
BSD 3-Clause "New" or "Revised" License
82 stars 24 forks source link

fixed godef look up in gopath #6

Open ericaro opened 9 years ago

ericaro commented 9 years ago

Hi buaazp,

Godef plugin makes an unecessary lookup into $GOPATH for the godef executable. Usually the OS does the lookup, and you just need to have godef reachable from the path.

So with this simplification, now 'godef' only need to be in the PATH, and I can install it for all user etc.

Regards,

yalay commented 7 years ago

I have the same idea as you.