aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/bash.vim
Commit message (Collapse)AuthorAgeFilesLines
* Refine version check for :compiler scriptsTom Ryder2019-05-291-1/+1
| | | | | | | The %:S modifier for shell escaping was added in 7.4.191, and the nicer syntax for checking patch levels not much later in 7.4.237. Bring the minimum version of Vim for the compiler scripts down just a bit, since it's not too much more reading and can still stay on one line.
* Overhaul Vim :compiler scriptsTom Ryder2019-05-291-13/+3
| | | | | | | | * Drop support for everything before Vim 8.0; this is mostly because of the requirement of %:S for safe 'makeprg' handling; it's not likely that I'll do much development on anything older than v8.0 anymore * Remove :CompilerSet definition for ancient Vims * Add brief comments and URLs to top of file
* Split long lines with version/patch check patternTom Ryder2019-05-171-1/+2
|
* Remove unnecessary g: prefixes to Vim variablesTom Ryder2019-05-091-2/+2
|
* Add option terminators or equivs to :compilersTom Ryder2018-08-191-2/+2
|
* Completely overhaul after/ftplugin filesTom Ryder2018-06-171-0/+17
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