aboutsummaryrefslogtreecommitdiff
path: root/vim/after
Commit message (Collapse)AuthorAgeFilesLines
...
* Update and configure for make_target.vimTom Ryder2018-07-121-1/+1
|
* Check for +conceal before setting 'conceallevel'Tom Ryder2018-07-111-1/+1
|
* Correct login around ftplugin/make.vim mappingsTom Ryder2018-07-101-4/+2
|
* Move after/ftplugin/sed.vim to ftplugin/sed.vimTom Ryder2018-07-101-9/+0
| | | | | Vim doesn't have a stock ftplugin for sed at all (just syntax), so this can be our base one.
* Overhaul after/ftpluginTom Ryder2018-07-1017-95/+51
| | | | | | 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.
* Move angle-bracket matchpairs to Perl filetypeTom Ryder2018-07-101-0/+5
| | | | | This is the only type I can think of where they're actually useful; in HTML, it's annoying having to be over the tag text to get the matching.
* Clear b:current_compiler on unloadTom Ryder2018-07-096-0/+6
|
* Overhaul ftplugin check, lint, tidyTom Ryder2018-07-097-53/+56
| | | | | | | | | | | | - 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-0817-207/+65
| | | | Mostly to simplify them--remove a lot of the load-guard cruft.
* Upgrade and adjust config for diff_prune.vimTom Ryder2018-07-081-3/+4
|
* Highlight overly long Git commit subjects as errorTom Ryder2018-07-081-0/+2
|
* Test 'modifiable' for spellchecking text/markdownTom Ryder2018-07-082-2/+2
|
* Disable concealing when editing Vim helpTom Ryder2018-07-081-0/+21
|
* Add patterns for Vim help file detectionTom Ryder2018-07-081-0/+1
|
* Unmap PHP bracket mapsTom Ryder2018-07-081-0/+7
|
* Remove error suppression on Vim unmapsTom Ryder2018-07-081-12/+12
|
* Restore Vim buffer mapping to unload scriptTom Ryder2018-07-081-13/+14
|
* Wrap comments with `gq` in Git commit messagesTom Ryder2018-07-071-1/+1
| | | | | | | | I like quoting things in Git commit messages, as if they were mail messages. This was supposed to be fixed in commit a5b8367, but I didn't add all the necessary flags.
* Rearrange Vim's VimL indent fileTom Ryder2018-07-061-8/+9
|
* Correct 'softtabstop' test in indent/vim.vimTom Ryder2018-07-051-1/+1
|
* Spin off Vim Perl version bump into ftpluginTom Ryder2018-07-041-4/+4
|
* Break up some long VimL linesTom Ryder2018-07-041-3/+6
|
* Use :nnoremap for Perl vim mapsTom Ryder2018-07-041-3/+3
|
* Add _v/_V Vim maps for Perl version bumpsTom Ryder2018-07-031-0/+9
|
* Don't spellcheck &readonly text/markdownTom Ryder2018-07-022-8/+12
| | | | | This stops annoying highlighting when I'm just reading something in Vim, rather than editing it (e.g. `view` or an unwriteable file).
* Add 'c' flag to 'formatoptions' for gitcommitTom Ryder2018-07-021-1/+1
| | | | This is so that quotes wrap pleasantly.
* Clear away stock vim ftplugin's buffer mapsTom Ryder2018-07-011-15/+13
|
* Make Vim ftplugin preamble consistent with pluginsTom Ryder2018-07-0116-16/+64
|
* Merge HTML timestamp into after/ftplugin/html.vimTom Ryder2018-07-012-28/+12
| | | | | I don't see myself breaking this out into its own ftplugin, and the Makefile can be simpler this way.
* Add new html/timestamp.vim ftpluginTom Ryder2018-07-011-0/+28
| | | | | Not sure if this one will get published--it's a bit ad-hoc in its current state.
* Add variable existence guard to after/indent/vimTom Ryder2018-06-301-1/+3
|
* Remove unneeded matchit set ex PHP after ftpluginTom Ryder2018-06-301-12/+0
|
* Conform all after/ftplugin filesTom Ryder2018-06-303-9/+18
|
* Join some b:undo_ftplugin addendaTom Ryder2018-06-307-13/+7
|
* Review vim/ftplugin and vim/indent filesTom Ryder2018-06-302-4/+20
|
* Refactor ftplugins into single filesTom Ryder2018-06-3045-815/+331
| | | | Each thereby effectively becomes its own .vimrc for that type.
* Add g:no_plugin_maps checks for ftplugin maps.vimTom Ryder2018-06-298-0/+40
|
* Use ftplugins for filetype mappings insteadTom Ryder2018-06-298-11/+170
|
* Refine 'comments' ftplugins furtherTom Ryder2018-06-294-15/+40
| | | | | Add 'formatoptions' flags 'o' and 'r' to all four configured types. This is especially important for block comments in PHP.
* Remove 'formatoptions' reset in ftpluginsTom Ryder2018-06-292-2/+2
|
* Add Vim ftplugin to set 'comments' for sedTom Ryder2018-06-291-0/+21
|
* Define 'comments' for AWKTom Ryder2018-06-291-0/+21
|
* Reduce shell format ftplugin to just 'comments'Tom Ryder2018-06-291-6/+5
|
* Add 'comments' settings for sh filetypeTom Ryder2018-06-291-0/+22
|
* Set 'include' and 'path' specifically in C/C++Tom Ryder2018-06-292-0/+44
| | | | | | Otherwise, use defaults that should be meaningful in other languages too, just to be tidy and not to show string.h in :find results when editing Awk scripts.
* Clear away VimL mapping rubbishTom Ryder2018-06-261-0/+37
|
* Missed an ftplugin map: HTML URL linkingTom Ryder2018-06-251-9/+0
|
* Move all local bindings out into .vimrcTom Ryder2018-06-2510-90/+0
| | | | This is the natural way of things, I think.
* Add after/ftplugin for gitcommit to quote with >Tom Ryder2018-06-201-0/+25
| | | | | | I love the way this works when writing mail, and find myself missing it when writing Git commits that include block quotes. This is ported from ftplugin/mail.vim.
* Use autoload function for tidy filtersTom Ryder2018-06-172-26/+12
|