When I save a buffer, some sort of error checking process automatically runs and freezes my window for a few seconds. How do you disable that?
Please don't use https://github.com/scrooloose/syntastic. Vim-go doesn't do any checking, it only outputs gofmt error if there is any. To disable them:
let g:go_fmt_fail_silently = 1
Thanks
fwiw, for anyone that comes here thinking this is caused by vim-go, like fatih pointed out it's likely caused by syntastic, the fix for that is :SyntasticToggleMode
:SyntasticToggleMode - this saves me.
Most helpful comment
fwiw, for anyone that comes here thinking this is caused by vim-go, like fatih pointed out it's likely caused by syntastic, the fix for that is
:SyntasticToggleMode