Hi,
Any GO IDE supports auto complete of builtin and installed functions under Windows?
Meanwhile, I'm trying to setup go-autocomplete under my Ubuntu. But I'm neither sophisticated with emacs, nor have I used emacs-autocomplete before. Here is my setup (based on searching the history of golang-nuts):
export GOPATH=~/.../Go
export PATH=$PATH:$GOPATH/bin
gocode set propose-builtins true
$ gocode set
propose-builtins true
lib-path ""
$ tail -1 ~/.emacs
(add-to-list 'load-path "~/.emacs.d/")
$ ls -1 go*
go-autocomplete-enable.el
go-autocomplete.el
$ cat go-autocomplete-enable.el
(require 'go-autocomplete)
(require 'auto-complete-config)
- I can see that autocomplete minor mode is enabled in my go buffer, but I didn't see anything about go-autocomplete.
- When I write "os.", nothing happens.
Anyone can help?
Thanks