Skip to content

Commit

Permalink
Merge pull request #580 from paked/master
Browse files Browse the repository at this point in the history
Add note on Syntastic lag to README
  • Loading branch information
fatih committed Nov 15, 2015
2 parents ea239a0 + 430a442 commit bf23118
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,14 @@ let g:go_bin_path = expand("~/.gotools")
let g:go_bin_path = "/home/fatih/.mypath" "or give absolute path
```

## Using with Syntastic
Sometimes when using both `vim-go` and `syntastic` Vim will start lagging while saving and opening
files. The following fixes this:

```vim
let g:syntastic_go_checkers = ['golint', 'govet', 'errcheck']
let g:syntastic_mode_map = { 'mode': 'active', 'passive_filetypes': ['go'] }
```

## More info

Expand Down

0 comments on commit bf23118

Please sign in to comment.