aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/php.vim
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary g: prefixes to Vim variablesTom Ryder2019-05-091-1/+1
|
* Choose regex character classes for some filetypesTom Ryder2018-12-291-0/+4
|
* Make <LocalLeader>f to toggle HTML/PHPTom Ryder2018-12-191-0/+5
| | | | | I'm thinking I might make this a generic mapping for "alternate filetype".
* Remove some overzealous b:undo_* settingTom Ryder2018-11-291-6/+0
| | | | | It's not that these shouldn't be set, it's more that it's the wrong place to do it, especially before they've caused any actual problems.
* Remove boilerplate after/ftplugin load guardsTom Ryder2018-11-291-5/+0
| | | | | | | | I'm likely going to move away from Vim 6.0 support, at least for all of this filetype stuff. We will keep the one filetype load guard we actually need, which is the HTML one, to stop plugins like markdown.vim from loading it.
* Use pman as 'keywordprg' for PHPTom Ryder2018-08-051-0/+4
|
* Overhaul after/ftpluginTom Ryder2018-07-101-10/+5
| | | | | | Use .= operator to append to b:undo_ftplugin, as we're requiring Vim 7.0 or later everywhere here anyway. Also remove &compatible where we don't need line breaks.
* Clear b:current_compiler on unloadTom Ryder2018-07-091-0/+1
|
* Overhaul ftplugin check, lint, tidyTom Ryder2018-07-091-6/+6
| | | | | | | | | | | | - Set 'equalprg' for HTML and Perl - Discard filter#Stable() - Set default :compiler for all applicable filetypes - Change local leader mappings for Perl and shell script merely to set :compiler, rather than running it - Bind global leader mapping for running :lmake! - Bind global leader mappings for applying 'equalprg' and 'formatprg' to the whole buffer, using a new autoloaded helper function vimrc#Anchor() to avoid the cursor jumping around
* Overhaul base after-ftpluginsTom Ryder2018-07-081-12/+4
| | | | Mostly to simplify them--remove a lot of the load-guard cruft.
* Unmap PHP bracket mapsTom Ryder2018-07-081-0/+7
|
* Make Vim ftplugin preamble consistent with pluginsTom Ryder2018-07-011-1/+4
|
* Remove unneeded matchit set ex PHP after ftpluginTom Ryder2018-06-301-12/+0
|
* Join some b:undo_ftplugin addendaTom Ryder2018-06-301-2/+1
|
* Review vim/ftplugin and vim/indent filesTom Ryder2018-06-301-0/+12
|
* Refactor ftplugins into single filesTom Ryder2018-06-301-0/+28
Each thereby effectively becomes its own .vimrc for that type.