saibing / bingo

Bingo is a Go language server that speaks Language Server Protocol.
MIT License
495 stars 25 forks source link

some special package will stop the auto complete,e.g. net package #175

Closed chenjie199234 closed 5 years ago

chenjie199234 commented 5 years ago

start code:

package main
import (
"fmt"
)
func main(){
fmt.
(works fine)
}

here is the problem:

package main
import (
"fmt"
"net"
)
func main(){
fmt.
(can't auto complete)
}

editor:neovim lsp provider:ale

saibing commented 5 years ago

@chenjie199234

Please use the enhanced version of gopls