aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/diff.vim
Commit message (Collapse)AuthorAgeFilesLines
* Add missing detail to a commentTom Ryder2018-11-291-1/+1
|
* Remove double-key mapping shortcutsTom Ryder2018-11-291-2/+0
| | | | | I never use these anyway; I'm firmly in the habit of using underscores to represent the current line these days.
* 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.
* Improve diff block navigation in Vim with functionTom Ryder2018-08-271-3/+15
|
* Silence Vim diff section navigation mapsTom Ryder2018-08-271-2/+2
| | | | | This is just to prevent the `:call search(...)` command from showing up in the command line when the map is invoked.
* Use local leader keys in Vim diff section nav mapsTom Ryder2018-08-271-4/+4
|
* Use search() in Vim diff section navigation mapsTom Ryder2018-08-271-2/+4
| | | | This preserves the user's primary search pattern.
* Use consistent format for local leader mappingsTom Ryder2018-08-141-3/+6
|
* Add Vim mappings for normal {,} in diff buffersTom Ryder2018-07-221-0/+6
|
* Overhaul after/ftpluginTom Ryder2018-07-101-3/+2
| | | | | | 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.
* Overhaul base after-ftpluginsTom Ryder2018-07-081-11/+2
| | | | 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
|
* Add patterns for Vim help file detectionTom Ryder2018-07-081-0/+1
|
* Make Vim ftplugin preamble consistent with pluginsTom Ryder2018-07-011-1/+4
|
* Refactor ftplugins into single filesTom Ryder2018-06-301-0/+22
Each thereby effectively becomes its own .vimrc for that type.