Reputation: 87
I use vim-go, but I don't like it auto build executable file when save a go source file. How to forbidden it?
Upvotes: 0
Views: 690
Reputation: 87
Not vim-go but syntastic do this, just config
let g:syntastic_go_checkers = []
Upvotes: 1