We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I setup zchee/deoplete-go but it does not work. I ran gocode command with reference to deoplete-plugins/deoplete-go#50, but nothing was returned. What is the problem?
$ cp ~/.config/nvim/dein/repos/github.com/zchee/deoplete-go/tests/fmt.go fmt.go $ cat fmt.go package main import ( "fmt" "net" "os" "strconv" "syscall" ) var str string func main() { fmt.Println(os.Args[0]) fmt.Println(net.InterfaceAddrs()) fmt.Println(strconv.FormatInt(int64(syscall.Getuid()), 10)) } $ gocode -f json --in fmt2.go autocomplete 128 $
I installed gocode with following command.
$ go get -u -v github.com/nsf/gocode
My environment is following.
$ goenv versions 1.10rc1 1.10rc2 * 1.9.4 (set by /Users/akiyosi/.goenv/version)
The text was updated successfully, but these errors were encountered:
why should it work? 128 byte is here:
package main import ( "fmt" "net" "os" "strconv" "syscall" ) var str string func main>>>>>#<<<<<() { fmt.Println(os.Args[0]) fmt.Println(net.InterfaceAddrs()) fmt.Println(strconv.FormatInt(int64(syscall.Getuid()), 10)) }
I'm not sure what to explain here really. Try debug mode maybe: gocode close && gocode -s -debug.
gocode close && gocode -s -debug
Sorry, something went wrong.
No branches or pull requests
I setup zchee/deoplete-go but it does not work. I ran gocode command with reference to deoplete-plugins/deoplete-go#50, but nothing was returned. What is the problem?
I installed gocode with following command.
My environment is following.
$ goenv versions 1.10rc1 1.10rc2 * 1.9.4 (set by /Users/akiyosi/.goenv/version)
The text was updated successfully, but these errors were encountered: