aboutsummaryrefslogtreecommitdiff
path: root/vim/after
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Use autoload function for temp-makeprg :lmakeTom Ryder2018-06-178-165/+55
|
* Arrange for tidiers to hold window positionTom Ryder2018-06-172-2/+16
|
* Completely overhaul after/ftplugin filesTom Ryder2018-06-1718-356/+346
| | | | | | | | | | | | | 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
* Use short-circuit for no-mapping checkTom Ryder2018-06-1611-197/+197
|
* Use `function!` consistently in ftpluginsTom Ryder2018-06-168-104/+88
|
* Spin off markdown_autoformat as its own distroTom Ryder2018-06-051-108/+0
|
* Restore ftplugin extras to vim/after dirTom Ryder2018-06-053-0/+186
| | | | | This reverts commit a14bc50. Changed my mind; decided it's tidier this way.
* Move Markdown and PHP ftplugins from after dirTom Ryder2018-06-043-174/+0
| | | | | | | Because we use our own private copies of the primary filetype plugins, they'll get loaded in the correct order from here. Also adjust Makefile to accommodate the extra level.
* Support counts and registers in paste wrappingTom Ryder2018-06-041-3/+3
|
* Rearrange/correct markdown_autoformat.vimTom Ryder2018-06-041-19/+9
|
* Use case-insensitive Vim ==#Tom Ryder2018-06-043-3/+3
|
* Clear markdown_autoformat.vim autocmds correctlyTom Ryder2018-06-041-1/+1
|
* Move markdown_autoformat.vim funcs back to localTom Ryder2018-06-041-4/+64
| | | | No advantage to making them autoload
* Don't load my HTML ftplugins for Markdown typesTom Ryder2018-06-043-3/+15
| | | | | | The stock markdown.vim file loads in all the html.vim ftplugins too. This is probably a good idea for the stock files, but none of my HTML extension plugins are appropriate for Markdown, so exclude them.
* Set and clear Markdown autocmd in groupTom Ryder2018-06-041-4/+13
|
* Use heuristics on Markdown to guess autoformatTom Ryder2018-06-041-0/+4
|
* Refactor suspend_autoformat.vim, add autoloadTom Ryder2018-06-042-34/+33
| | | | | | | | * Add a function to suspend autoformatting for the duration of pasting lines. * Factor the ftplugin's functions out to be autoloaded; this requires Vim >=7.0, but it already needed that. * Add Makefile infrastructure for new autoload directories/files.
* Correct logic of Markdown/text spell checkingTom Ryder2018-06-032-14/+18
|
* Vim ftplugin: hold autoformat in *.md code blocksTom Ryder2018-06-031-0/+34
|