aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'release/v1.6.0'v1.6.0Tom Ryder2018-06-267-68/+118
|\ | | | | | | | | | | | | | | | | * release/v1.6.0: Bump VERSION Update clear_local_maps.vim plugin Clear away VimL mapping rubbish Refactor filetype-specific .vimrc material Remap normal J only if loading plugins
| * Bump VERSIONTom Ryder2018-06-261-2/+2
| |
| * Update clear_local_maps.vim pluginTom Ryder2018-06-261-0/+0
| |
| * Clear away VimL mapping rubbishTom Ryder2018-06-261-0/+37
| |
| * Refactor filetype-specific .vimrc materialTom Ryder2018-06-264-63/+75
| | | | | | | | | | | | | | | | Put filetype bindings into a separate file filemap.vim at the same level as filetype.vim, to be loaded directly after the "filetype" command. This removes per-filetype logic one step from ~/.vimrc, which seems appropriate, and also allows me to use long line breaks in the new file.
| * Remap normal J only if loading pluginsTom Ryder2018-06-261-3/+4
| | | | | | | | This will also deftly dodge vim-tiny.
| * Merge branch 'release/v1.5.0' into developTom Ryder2018-06-261-2/+2
| |\ | | | | | | | | | | | | * release/v1.5.0: Bump VERSION
* | \ Merge branch 'release/v1.5.0'v1.5.0Tom Ryder2018-06-263-5/+6
|\ \ \ | | |/ | |/| | | | | | | | | | | | | * release/v1.5.0: Bump VERSION Add fallback for normal J Expand/fix messages filetype detection
| * | Bump VERSIONTom Ryder2018-06-261-2/+2
| |/
| * Add fallback for normal JTom Ryder2018-06-251-1/+2
| |
| * Expand/fix messages filetype detectionTom Ryder2018-06-251-2/+2
| |
| * Merge branch 'release/v1.4.0' into developTom Ryder2018-06-251-2/+2
| |\ | | | | | | | | | | | | * release/v1.4.0: Bump VERSION
* | \ Merge branch 'release/v1.4.0'v1.4.0Tom Ryder2018-06-256-46/+49
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | * release/v1.4.0: Bump VERSION Rebuild dotfiles(7) manual page Update README.md about Vim mappings Add and apply new clear_local_maps.vim plugin Use <Leader> in vimrc where reasonable Reindent and refactor local leader mappings
| * | Bump VERSIONTom Ryder2018-06-251-2/+2
| |/
| * Rebuild dotfiles(7) manual pageTom Ryder2018-06-251-3/+3
| |
| * Update README.md about Vim mappingsTom Ryder2018-06-251-10/+11
| |
| * Add and apply new clear_local_maps.vim pluginTom Ryder2018-06-253-1/+4
| |
| * Use <Leader> in vimrc where reasonableTom Ryder2018-06-251-6/+6
| |
| * Reindent and refactor local leader mappingsTom Ryder2018-06-251-25/+24
| |
| * Merge branch 'release/v1.3.0' into developTom Ryder2018-06-251-2/+2
| |\ | | | | | | | | | | | | * release/v1.3.0: Bump VERSION
* | \ Merge branch 'release/v1.3.0'v1.3.0Tom Ryder2018-06-254-4/+46
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | * release/v1.3.0: Bump VERSION Clear local leader maps on filetype change Upgrade fixed_join.vim, define map explicitly Remove misguided buffer mapping clear
| * | Bump VERSIONTom Ryder2018-06-251-2/+2
| |/
| * Merge branch 'release/v1.2.0' into developTom Ryder2018-06-251-2/+2
| |\ | | | | | | | | | | | | * release/v1.2.0: Bump VERSION
| * | Clear local leader maps on filetype changeTom Ryder2018-06-252-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Iterate through all the buffer-local mappings each time the filetype changes, and clear any that begin with the local leader, using two autoloaded functions and one autoload variable for :redir. I really don't think it should be this hard. I hope I haven't missed something in the documentation that makes this easier. I thought maparg() or mapcheck() might do it, but no such luck. Maybe I can refactor this later.
| * | Upgrade fixed_join.vim, define map explicitlyTom Ryder2018-06-252-0/+3
| | |
| * | Remove misguided buffer mapping clearTom Ryder2018-06-251-3/+0
| | | | | | | | | | | | This gets rid of the <Plug> targets as well, of course...
* | | Merge branch 'release/v1.2.0'v1.2.0Tom Ryder2018-06-252-2/+5
|\ \ \ | | |/ | |/| | | | | | | | | | * release/v1.2.0: Bump VERSION Clear away filetype buffer mappings in vimrc
| * | Bump VERSIONTom Ryder2018-06-251-2/+2
| |/
| * Clear away filetype buffer mappings in vimrcTom Ryder2018-06-251-0/+3
| |
| * Merge branch 'release/v1.1.0' into developTom Ryder2018-06-251-2/+2
| |\ | | | | | | | | | | | | * release/v1.1.0: Bump VERSION
* | \ Merge branch 'release/v1.1.0'v1.1.0Tom Ryder2018-06-2520-110/+75
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v1.1.0: Bump VERSION Adjust an augroup name Missed an ftplugin map: HTML URL linking Update diff_prune.vim ftplugin Move all local bindings out into .vimrc Correct .vimrc comment Add diff_prune.vim ftplugin Update redact_pass.vim plugin Correct Vim 'formatlistpat' def for Markdown Add password filetype Correct an exists() call in markdown ftplugin Add "gitrebase" Vim filetype Print working directory after \g in Vim Bind \g in Vim to go to the current buffer's dir Add tab cycle bindings Update fixed_join.vim plugin
| * | Bump VERSIONTom Ryder2018-06-251-2/+2
| |/
| * Adjust an augroup nameTom Ryder2018-06-251-1/+1
| |
| * Missed an ftplugin map: HTML URL linkingTom Ryder2018-06-252-10/+2
| |
| * Update diff_prune.vim ftpluginTom Ryder2018-06-251-0/+0
| |
| * Move all local bindings out into .vimrcTom Ryder2018-06-2511-101/+34
| | | | | | | | This is the natural way of things, I think.
| * Correct .vimrc commentTom Ryder2018-06-251-1/+1
| |
| * Add diff_prune.vim ftpluginTom Ryder2018-06-253-0/+14
| |
| * Update redact_pass.vim pluginTom Ryder2018-06-241-0/+0
| |
| * Correct Vim 'formatlistpat' def for MarkdownTom Ryder2018-06-231-2/+2
| |
| * Add password filetypeTom Ryder2018-06-232-0/+17
| |
| * Correct an exists() call in markdown ftpluginTom Ryder2018-06-231-1/+1
| | | | | | | | Evidently copy-pasted from documentation.
| * Add "gitrebase" Vim filetypeTom Ryder2018-06-231-0/+4
| |
| * Print working directory after \g in VimTom Ryder2018-06-231-1/+1
| |
| * Bind \g in Vim to go to the current buffer's dirTom Ryder2018-06-231-0/+2
| |
| * Add tab cycle bindingsTom Ryder2018-06-231-0/+3
| |
| * Update fixed_join.vim pluginTom Ryder2018-06-231-0/+0
| |
| * Merge branch 'release/v1.0.0' into developTom Ryder2018-06-231-2/+2
| |\ | | | | | | | | | | | | * release/v1.0.0: Bump VERSION
* | \ Merge branch 'release/v1.0.0'v1.0.0Tom Ryder2018-06-234-141/+84
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v1.0.0: (24 commits) Bump VERSION Remove 'tabstop' setting from .exrc Document mode of Vim leader mappings Remove 'fillchars' setting from .vimrc Refine more .vimrc comments Lean on defaults for Vim 'shortmess' Remove j/gj remappings Handle visual mode better in Vim mappings Adjust more .vimrc comments and whitespace Reorder .vimrc mappings Don't reset 'backspace' in .vimrc More comment adjusting in .vimrc Remove 'spelllang' setting from .vimrc Add [a, ]a shortcuts to cycle through Vim arg list Remove 'equalalways' disable from .vimrc Remove 'wrap' disable from .vimrc Remove 'swapfile' disable in .vimrc Fix up .vimrc comments Alphabetically order 'backspace' flags Remove unneeded :vnoremap command ...
| * | Bump VERSIONTom Ryder2018-06-231-2/+2
| |/ | | | | | | 1.0.0 release!