aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler
Commit message (Collapse)AuthorAgeFilesLines
* Add syntax checking with zsh -n for Z shellTom Ryder2017-11-231-0/+17
|
* Correct "fi" to "endif" in new compiler filesTom Ryder2017-11-202-2/+2
|
* Use %:S expansion only when availableTom Ryder2017-11-192-2/+14
|
* Force g:current_compiler removal before check/lintTom Ryder2017-11-192-2/+2
| | | | This seems to be necessary for Vim 6.
* Use :compiler scripts for makeprg setupTom Ryder2017-11-192-0/+22
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.