heetch / neovim-config

16 stars 1 forks source link

Run Gometalinter with SPC-SPC-l #10

Closed arkan closed 8 years ago

arkan commented 8 years ago

Currently gometalinter runs on save with the following checks: vet, golint.

This operation is fast enough to be run on each save.

However it is interesting to have more checks to run when one desires to. This PR adds support for this.

From now on SPC-SPC-l gometalinter will run with vet, golint, errcheck, deadcode.

This operation takes longer though.