aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'release/v1.17.0'v1.17.0Tom Ryder2018-07-025-20/+56
|\ | | | | | | | | | | | | | | * release/v1.17.0: Bump VERSION Use if not && for conditional install Add CentOS and Debian .vim tweaks Map \e in Vim to force a buffer to be editable
| * Bump VERSIONTom Ryder2018-07-021-2/+2
| |
| * Use if not && for conditional installTom Ryder2018-07-021-4/+6
| | | | | | | | The whole expression evaluates true this way.
| * Add CentOS and Debian .vim tweaksTom Ryder2018-07-023-18/+50
| |
| * Merge branch 'hotfix/v1.16.1' into developTom Ryder2018-07-022-2/+3
| |\ | | | | | | | | | | | | | | | * hotfix/v1.16.1: Bump VERSION Add mkdir for ~/.vim/config
| * | Map \e in Vim to force a buffer to be editableTom Ryder2018-07-021-0/+2
| | |
| * | Merge branch 'release/v1.16.0' into developTom Ryder2018-07-022-15/+9
| |\ \ | | | | | | | | | | | | | | | | | | | | * release/v1.16.0: Rebuild dotfiles(7) manual Bump VERSION
* | \ \ Merge branch 'hotfix/v1.16.1'v1.16.1Tom Ryder2018-07-022-2/+3
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | | | | | * hotfix/v1.16.1: Bump VERSION Add mkdir for ~/.vim/config
| * | | Bump VERSIONTom Ryder2018-07-021-2/+2
| | | |
| * | | Add mkdir for ~/.vim/configTom Ryder2018-07-021-0/+1
|/ / /
* | | Merge branch 'release/v1.16.0'v1.16.0Tom Ryder2018-07-0210-35/+58
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v1.16.0: Rebuild dotfiles(7) manual Bump VERSION Update insert_cancel.vim plugin Add vim config subfile to undo Debian's changes Provide install-neovim target Don't shout in CJK in README.md. Don't spellcheck &readonly text/markdown Add 'c' flag to 'formatoptions' for gitcommit Correct <C-L> mapping
| * | Rebuild dotfiles(7) manualTom Ryder2018-07-021-13/+7
| | |
| * | Bump VERSIONTom Ryder2018-07-021-2/+2
| |/
| * Update insert_cancel.vim pluginTom Ryder2018-07-021-0/+0
| |
| * Add vim config subfile to undo Debian's changesTom Ryder2018-07-022-0/+22
| |
| * Provide install-neovim targetTom Ryder2018-07-022-9/+11
| |
| * Don't shout in CJK in README.md.Tom Ryder2018-07-021-1/+1
| |
| * 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.
| * Correct <C-L> mappingTom Ryder2018-07-021-1/+2
| | | | | | | | Exclude operator mode, and restore visual/select selection.
| * Merge branch 'release/v1.15.0' into developTom Ryder2018-07-021-2/+2
| |\ | | | | | | | | | | | | * release/v1.15.0: Bump VERSION
* | \ Merge branch 'release/v1.15.0'v1.15.0Tom Ryder2018-07-0227-147/+191
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v1.15.0: (37 commits) Bump VERSION Reimplement fallback for fixed_join.vim Add insert_cancel.vim plugin and configuration Clear away stock vim ftplugin's buffer maps Correct \V mapping Include install-vim-plugin in install-vim target Break up \o and \O mapping comment Move plugin-specific settings into ~/.vim/plugin Remove custom digraphs Remove unnecessary value report from \u \z maps Add \m, \M, \v, and \V mappings Allow range for \d and \D bindings Swap \c and \C bindings Rearrange mappings a little more Remove unused mappings Simplify Ctrl-L Vim map Reorder mappings Remove conditional around \d,\D maps Remove range strip from :& rebind Prefer "remap" to "rebind" ...
| * | Bump VERSIONTom Ryder2018-07-021-2/+2
| |/
| * Reimplement fallback for fixed_join.vimTom Ryder2018-07-021-3/+3
| |
| * Add insert_cancel.vim plugin and configurationTom Ryder2018-07-023-1/+6
| |
| * Clear away stock vim ftplugin's buffer mapsTom Ryder2018-07-011-15/+13
| |
| * Correct \V mappingTom Ryder2018-07-011-1/+1
| |
| * Include install-vim-plugin in install-vim targetTom Ryder2018-07-011-1/+2
| |
| * Break up \o and \O mapping commentTom Ryder2018-07-011-1/+2
| |
| * Move plugin-specific settings into ~/.vim/pluginTom Ryder2018-07-014-32/+22
| | | | | | | | | | | | Makes way more sense--these files won't get loaded by definition unless plugins are enabled, and dist.vim will still be in time to stop the distributed plugins from loading.
| * Remove custom digraphsTom Ryder2018-07-011-7/+0
| | | | | | | | | | Ellipsis is digraph ,. which is fine. Mac command key I have never used, snowman was just a joke.
| * Remove unnecessary value report from \u \z mapsTom Ryder2018-07-011-2/+2
| |
| * Add \m, \M, \v, and \V mappingsTom Ryder2018-07-011-0/+8
| | | | | | | | For listing maps and variables.
| * Allow range for \d and \D bindingsTom Ryder2018-07-011-2/+2
| |
| * Swap \c and \C bindingsTom Ryder2018-07-011-3/+4
| |
| * Rearrange mappings a little moreTom Ryder2018-07-011-6/+6
| |
| * Remove unused mappingsTom Ryder2018-07-011-8/+0
| | | | | | | | These have all fallen out of disuse; I'm much more likely to y$ anyway.
| * Simplify Ctrl-L Vim mapTom Ryder2018-07-011-5/+2
| | | | | | | | It can be used in select mode, too.
| * Reorder mappingsTom Ryder2018-07-011-16/+16
| |
| * Remove conditional around \d,\D mapsTom Ryder2018-07-011-7/+4
| |
| * Remove range strip from :& rebindTom Ryder2018-07-011-1/+1
| | | | | | | | Not needed; a range works just fine
| * Prefer "remap" to "rebind"Tom Ryder2018-07-011-2/+2
| |
| * Use <Bslash> not \ for mapsTom Ryder2018-07-011-20/+20
| |
| * Rearrange a few .vimrc commentsTom Ryder2018-07-011-8/+2
| |
| * Make Vim ftplugin preamble consistent with pluginsTom Ryder2018-07-0116-16/+64
| |
| * Merge HTML timestamp into after/ftplugin/html.vimTom Ryder2018-07-015-53/+33
| | | | | | | | | | 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-012-0/+43
| | | | | | | | | | Not sure if this one will get published--it's a bit ad-hoc in its current state.
| * Support nested dirs in two Vim runtime subdirsTom Ryder2018-07-011-4/+10
| | | | | | | | ~/.vim/after/ftplugin and ~/.vim/autoload, specifically.
| * Correct comment spelling in .vimrcTom Ryder2018-07-011-1/+1
| |
| * Update juvenile.vim colorschemeTom Ryder2018-07-011-0/+0
| |