Skip to content

v0.0.15

Compare
Choose a tag to compare
@myitcv myitcv released this 03 Jun 10:24
4c35102

Breaking changes

govim now uses config functions to control behaviour. For example:

let g:govim_format_on_save="goimports"

becomes:

call govim#config#Set("FormatOnSave", "goimports")

See the Config go doc for the valid keys and values. The wiki has been updated to reflect this change.

Features/bug fixes

  • If you have Vim/Gvim >= 8.1.1419 then you will send incremental buffer updates to gopls instead of entire file contents. This should improve general responsiveness
  • Various gopls fixes
  • Fix where :w after an undo would fail
  • Fix where quickfix window would be incorrectly populated on occasions (#261)