Remove request throttling for Neovim now that gopls uses caching

Tyler Compton 2019-03-13 14:46:42 -07:00
parent 02c0d09fd3
commit 9ecc0aed3d

@ -43,8 +43,6 @@ g:go_def_mode='gopls'
let g:LanguageClient_serverCommands = {
\ 'go': ['gopls']
\ }
" Prevents the language client from overwhelming gopls with too many requests
let g:LanguageClient_changeThrottle = 0.5
" Run gofmt and goimports on save
autocmd BufWritePre *.go :call LanguageClient#textDocument_formatting_sync()
```