13 lines
256 B
VimL
13 lines
256 B
VimL
|
" Author: Vanessa McHale
|
||
|
" Maintainer: Vanessa McHale <vamchale@gmail.com>
|
||
|
|
||
|
if exists('b:ats_plugin')
|
||
|
finish
|
||
|
endif
|
||
|
let b:ats_plugin = 1
|
||
|
|
||
|
augroup ats
|
||
|
exec 'autocmd BufWritePost *.*ats Check'
|
||
|
exec 'command! Check SyntasticCheck | Error'
|
||
|
augroup END
|