Open edi9999 opened 2 years ago
This is probably because vim-go is updated and this function no longer exists there.
Indeed, it was removed here :
https://github.com/fatih/vim-go/commit/34aeb1ddfd436ef9781b0c6c44c7698c30232ea7
you can do a temp fix for this by reverting vim-go.
git reset --hard d34c629b852cd4a308606791ca8a809cd8490886
If you use plug.vim you can also use frozen
tag:
https://github.com/junegunn/vim-plug/blob/e300178a0e2fb04b56de8957281837f13ecf0b27/doc/plug.txt#L212
Thanks, I've fixed it using following line in my .vimrc :
Plug 'fatih/vim-go', { 'commit' : 'd34c629b852cd4a308606791ca8a809cd8490886' }
Nice, ideally, this function can be moved to vim-pythonx. I am not sure anyone use vim-go nowadays, seems like everyone enjoys coc.nvim
I get following stacktrace when I open vim in a go file and in insert mode, write :
foo.
(After hitting the dot).