Syntastic runs files through external syntax checkers and displays any resulting errors to the user.
https://github.com/vim-syntastic/syntastic| Installer Source| Releases (json) (tab)
Syntastic runs files through external syntax checkers and displays any resulting errors to the user.
https://github.com/vim-syntastic/syntastic| Installer Source| Releases (json) (tab)
vim-syntastic
webi vim-syntastic
These are the files / directories that are created and/or modified with this install:
~/.vim/pack/plugins/start/vim-syntastic/
vim-syntastic
has been superseded by
ALE, but it lives on in my heart, my
.vim
, and my .vimrc
.
git clone --depth=1 https://github.com/vim-syntastic/syntastic.git ~/.vim/pack/plugins/start/vim-syntastic
.vimrc
.vimrc
:
" manually set plugin to use bash - not zsh, fish, etc
set shell=bash
" add this if packages don't load automatically
" or remove it otherwise
packloadall
" turn on the syntax checker
syntax on
" don't check syntax immediately on open or on quit
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:syntastic_javascript_checkers = ['jshint']
let g:syntastic_go_checkers = ['go', 'golint', 'errcheck']