aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary g: prefixes to Vim variablesTom Ryder2019-05-098-16/+16
|
* Add option terminators or equivs to :compilersTom Ryder2018-08-198-16/+16
|
* Add local copy of php.vim compilerTom Ryder2018-06-171-0/+23
| | | | Slightly adapted; doesn't load at all if &compatible
* Completely overhaul after/ftplugin filesTom Ryder2018-06-174-0/+78
| | | | | | | | | | | | | Should have done some of this in separate commits; oh well. * Rewrite headers for each ftplugin * Require Vim version >= 7.0, and thereby: * Switch back to location list * Don't check for b:undo_ftplugin existence, assume it * Save and restore compiler instead of internal options * Add bash, ksh, sh, and shellcheck compilers * Rename mail/format_flowed.vim to mail/flowed.vim * Rename sh/bash_han.vim to sh/han.vim
* Correct g:current_compiler settingTom Ryder2018-06-161-1/+1
| | | | Copypaste error.
* 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.