diff --git a/plugin/ats.vim b/plugin/ats.vim new file mode 100644 index 0000000..3ec4b2c --- /dev/null +++ b/plugin/ats.vim @@ -0,0 +1,12 @@ +" Author: Vanessa McHale +" Maintainer: Vanessa McHale + +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