aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin
Commit message (Collapse)AuthorAgeFilesLines
* Don't suppress errors from loading matchitTom Ryder2019-05-181-1/+1
|
* Adjust formatting of a leading commentTom Ryder2019-05-181-1/+2
|
* Move 'wildignore' setting back into .vimrcTom Ryder2019-05-181-173/+0
|
* Remove unnecessary l: prefixes to Vim variablesTom Ryder2019-05-091-22/+22
|
* Remove unnecessary g: prefixes to Vim variablesTom Ryder2019-05-092-10/+10
|
* Revert "Add experimental delimit_operator.vim plugin"Tom Ryder2019-01-041-12/+0
| | | | | | | | | This reverts commit 6ed48b12e451a0770d5a3f236e66e0e7e9a39c8d. I don't think this is the right approach. The main reason I dropped surround.vim was because I didn't like how often I was doing something that doesn't work at all in vanilla Vim. If I make a half-assed re-implementation, I'm just perpetuating the problem.
* Add experimental delimit_operator.vim pluginTom Ryder2019-01-041-0/+12
| | | | | | This is an attempt at a small subset of surround.vim's behaviour, hopefully drastically simplified. I'm not actually sure how useful or practical this is going to be yet.
* Revert "Replace paste_open.vim with paste_hook....Tom Ryder2018-09-141-44/+0
| | | | | | | This reverts commit dce5abc0724428f805562dd32bf9a71677d55aaa. On review, paste_open is good enough. I can always dig this back up again if I need to.
* Replace paste_open.vim with paste_hook.vimTom Ryder2018-09-121-0/+44
| | | | Still a little experimental; no documentation (or distribution) yet.
* Correct a comment in vim/plugin/dist.vimTom Ryder2018-09-051-1/+1
|
* Remove visual_block_suspend_wrap.vimTom Ryder2018-08-311-43/+0
| | | | | | This would be great if it was immediate and didn't require the CursorMoved event, but as it stands it's not really an improvement over just my \w mapping to toggle 'wrap'.
* Add visual_block_suspend_wrap.vim pluginTom Ryder2018-08-301-0/+43
|
* Revert "Let's try leaving netrw on again for a ...Tom Ryder2018-08-181-0/+2
| | | | This reverts commit 60eab724a29101c54c2d5d1cccd56385a8e5a85c.
* Add explanatory README to vim/plugin directoryTom Ryder2018-08-161-0/+3
|
* Spin equalalways_resized.vim into its own distTom Ryder2018-08-161-27/+0
|
* Spin foldlevelstart_stdin.vim into its own distTom Ryder2018-08-161-28/+0
|
* Spin out scroll_next.vim into its own distTom Ryder2018-08-161-32/+0
|
* Allow loading gzip pluginTom Ryder2018-08-151-1/+0
| | | | | Vim's help files are sometimes compressed, assuming this is available, so I'll put up with this.
* Spin out vertical_region.vim into submoduleTom Ryder2018-08-101-29/+0
|
* Use autoloading for vertical_region.vimTom Ryder2018-08-101-44/+6
|
* Add vertical_region.vim pluginTom Ryder2018-08-101-0/+67
|
* Let's try leaving netrw on again for a bitTom Ryder2018-08-041-2/+0
|
* Spin cursorline_current.vim out into pluginTom Ryder2018-08-041-75/+0
|
* Make insert-mode cursorline ducking configurableTom Ryder2018-08-041-2/+5
|
* Remove conditionals for 'cursorline' hooksTom Ryder2018-08-041-15/+9
| | | | | The version check for Vim 7 and the feature checks for +autocmd and +windows should be good enough.
* Remove illegal :wincmd range prefixTom Ryder2018-08-041-1/+2
| | | | | Vim 7 doesn't allow a window prefix for :windo, so just break it into two steps instead.
* Require Vim 7 for cursorline_current.vimTom Ryder2018-08-041-1/+1
| | | | Most of the autocmd events are Vim 7, and there's a :for there too.
* Add cursorline_current.vim pluginTom Ryder2018-08-041-0/+77
| | | | | Also turn on 'cursorline' option in .vimrc, and update sahara.vim colorscheme, which has a nice subdued 'cursorline'.
* Add equalalways_resized.vim pluginTom Ryder2018-08-011-0/+27
| | | | | Extend the 'equalalways' option to rebalance the windows when Vim is resized.
* Remove trailing space from Vim pluginTom Ryder2018-08-011-1/+1
|
* Add missing abort attribute to pluginTom Ryder2018-08-011-1/+1
|
* Add scroll_next.vim pluginTom Ryder2018-07-311-0/+32
|
* Don't set up 'wildignore' in &compatible modeTom Ryder2018-07-301-1/+1
| | | | | Vim doesn't understand line continuation characters in compatible mode, and I don't like the temporary &cpo hack.
* Add foldlevelstart_stdin.vim pluginTom Ryder2018-07-301-0/+28
| | | | This makes 'foldlevelstart' work for stdin reads.
* Spin quickfix_auto_open.vim out into a pluginTom Ryder2018-07-241-22/+0
|
* Spin out colon_operator.vim plugin into submoduleTom Ryder2018-07-241-36/+0
|
* Improved colon_operator.vim pluginTom Ryder2018-07-241-5/+17
|
* Add colon_operator.vim pluginTom Ryder2018-07-241-0/+24
|
* Move quickfix auto-open into a little plugin fileTom Ryder2018-07-241-0/+22
| | | | | I might package this one up, but it's not original and it's so tiny/trivial it's probably not going to get uploaded on vim.org.
* Only add uppercase 'wildignore' if it mattersTom Ryder2018-07-181-6/+9
|
* Spin shebang_create_exec.vim into own distributionTom Ryder2018-07-171-21/+0
|
* Separate shebang_create_exec into autoload funcsTom Ryder2018-07-171-16/+2
|
* Reformat comment in wildignore.vimTom Ryder2018-07-161-3/+3
|
* Add shebang_create_exec.vim pluginTom Ryder2018-07-161-0/+35
|
* Add plugin file for setting 'wildignore'Tom Ryder2018-07-151-0/+170
|
* Spin off vimrc_reload_filetype.vimTom Ryder2018-07-141-23/+0
|
* Rename and refine reload_vimrc_filetype.vimTom Ryder2018-07-131-10/+5
|
* Move .vimrc reloading stuff into custom pluginTom Ryder2018-07-131-0/+28
| | | | Not sure whether I'll bother packaging this one.
* Remove session_lazy.vimTom Ryder2018-07-101-23/+0
| | | | | I think this is the wrong approach, and maybe even a slight security risk.
* Add session_lazy.vim pluginTom Ryder2018-07-101-0/+23
| | | | | | | Mostly to properly tie down the way I want sessions to behave while I write my book. No documentation yet!