Closed parhamdoustdar closed 7 years ago
No, that parsing error is fine. It says: Import path "booking/oconf/oconfutil" was not resolved
. It couldn't find your library. Gocode expects libraries being compiled and installed (usually with go install
or go get
). Make sure you compiled your booking/oconf/oconfutil
with go install or something.
It's not geocode, it's gocode. It's not a library, it's a program.
Thanks a lot for the lightning fast answer! :-)
Sorry for the typo – my screen reader acts weird sometimes and doesn't give me the audio cue that says Mac OS just fix what it thought was a spelling error. Hence, gocode
ends up as geocode
.
Also, thanks a lot for telling me about the need to actually install
my local libraries. I did that, and it works flawlessly! Plus, it got me to read the code and understand where the ;
error was coming from.
Just as an aside, I'm completely blind and use Emacs to code. Without your program, I would be in really bad trouble. Thanks for all the time you've helped me save.
Hi,
I have a file like this:
As soon as I type in the ".", the geocode server which I've run in debug mode gets a request. However, even though all the paths in the debug output are correct, geocode cannot resolve the package. here is the output of debug:
I think the culprit is the error saying
expected selector or type assertion, found ';'
, but I'm not sure.Thanks a lot for the awesome library! <3