aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/perlcritic.vim
Commit message (Collapse)AuthorAgeFilesLines
* Correct g:current_compiler settingTom Ryder2018-06-161-1/+1
| | | | Copypaste error.
* Correct "fi" to "endif" in new compiler filesTom Ryder2017-11-201-1/+1
|
* Use %:S expansion only when availableTom Ryder2017-11-191-1/+7
|
* Force g:current_compiler removal before check/lintTom Ryder2017-11-191-1/+1
| | | | This seems to be necessary for Vim 6.
* Use :compiler scripts for makeprg setupTom Ryder2017-11-191-0/+11
I didn't know about :compiler until now. From :help write-compiler-plugin: > A compiler plugin sets options for use with a specific compiler. The > user can load it with the |:compiler| command. The main use is to set > the 'errorformat' and 'makeprg' options. Vim even has "perl" and "tidy" compilers already that seem to work really well. I'll just add in my own and install them.