From 12429bd0c4848a2762470cabbca1e39bb2cc1841 Mon Sep 17 00:00:00 2001 From: Vanessa McHale Date: Sat, 23 Dec 2017 16:42:58 -0600 Subject: [PATCH] package publish --- syntax_checkers/ats/patscc.vim | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/syntax_checkers/ats/patscc.vim b/syntax_checkers/ats/patscc.vim index 37aaad0..2a125b0 100644 --- a/syntax_checkers/ats/patscc.vim +++ b/syntax_checkers/ats/patscc.vim @@ -5,15 +5,6 @@ let g:loaded_syntastic_ats_patscc_checker = 1 let g:syntastic_ats_patscc_exec = 'patscc' -function! syntastic#postprocess#Cleanup(errors) abort " {{{2 - - exec 'silent !rm -f a.out' - exec 'echom "here"' - - return a:errors - -endfunction " }}}2 - function! SyntaxCheckers_ats_patscc_GetLocList() dict let makeprg = self.makeprgBuild({ \ 'exe': self.getExec(), @@ -34,5 +25,4 @@ endfunction call g:SyntasticRegistry.CreateAndRegisterChecker({ \ 'filetype': 'ats', - \ 'name': 'patscc', - \ 'postprocess': 'Cleanup'}) + \ 'name': 'patscc' })