aboutsummaryrefslogtreecommitdiff
path: root/vim
Commit message (Collapse)AuthorAgeFilesLines
* Rearrange settings in Vim Perl indent scriptTom Ryder2018-07-071-4/+4
| | | | | | The version of this indent script bundled with Vim sets the 'indentexpr' and 'indentkeys' options before the GetPerlIndent() function; may as well follow that pattern.
* Adjust a few Vim Perl indent commentsTom Ryder2018-07-071-5/+5
|
* Wrap comments with `gq` in Git commit messagesTom Ryder2018-07-071-1/+1
| | | | | | | | I like quoting things in Git commit messages, as if they were mail messages. This was supposed to be fixed in commit a5b8367, but I didn't add all the necessary flags.
* Get 'shiftwidth' in Vim Perl indent portablyTom Ryder2018-07-071-1/+3
| | | | | | | | | | | From `:help shiftwidth()`: > Returns the effective value of 'shiftwidth'. This is the 'shiftwidth' > value unless it is zero, in which case it is the 'tabstop' value. This > function was introduced with patch 7.3.694 in 2012, everybody should > have it by now. I'd like my stuff to work on older versions, though, and it's not hard to make it work.
* Adjust leading comment for Vim Perl indentTom Ryder2018-07-071-5/+1
|
* Refactor opening of Vim Perl indent scriptTom Ryder2018-07-061-6/+5
|
* Add a comment to Vim Perl indent rulesTom Ryder2018-07-061-0/+2
|
* Add attempt at own Vim Perl indentingTom Ryder2018-07-061-0/+74
|
* Correct has() to exists() in .vimrcTom Ryder2018-07-061-1/+1
|
* Remove .vimrc 'report' settingTom Ryder2018-07-061-3/+0
| | | | The default is fine.
* Rearrange Vim's VimL indent fileTom Ryder2018-07-061-8/+9
|
* Add \k, \q, and \y .vimrc mappingsTom Ryder2018-07-061-0/+6
| | | | Using all of the lowercase alphabet now.
* Disable 'shiftround' in Vim for a whileTom Ryder2018-07-051-1/+0
| | | | | After experimenting, I suspect it's actually causing more grief than it saves.
* Add shebang_update.vim pluginTom Ryder2018-07-052-0/+27
| | | | | This plugin updates the filetype after every insert operation that changes the first line. No documentation yet.
* Correct 'softtabstop' test in indent/vim.vimTom Ryder2018-07-051-1/+1
|
* Experiment with comma as Vim <LocalLeader>Tom Ryder2018-07-051-1/+1
|
* Spin off Vim Perl version bump into ftpluginTom Ryder2018-07-043-49/+4
|
* Have Vim Perl major version bump map reset minorTom Ryder2018-07-041-5/+5
|
* Simplify .vimrc leader map settingsTom Ryder2018-07-041-7/+6
|
* Correct alphabetical order of filetype.vimTom Ryder2018-07-041-34/+34
|
* Break up some long VimL linesTom Ryder2018-07-041-3/+6
|
* Use :nnoremap for Perl vim mapsTom Ryder2018-07-041-3/+3
|
* Rewrite Perl version-number bump Vim funcsTom Ryder2018-07-041-9/+26
|
* Add _v/_V Vim maps for Perl version bumpsTom Ryder2018-07-032-0/+37
|
* Use full names of 'cscope...' Vim optionsTom Ryder2018-07-031-1/+4
|
* Handle system-specific undos with system.vim fileTom Ryder2018-07-033-0/+3
|
* Update insert_cancel.vim pluginTom Ryder2018-07-021-0/+0
|
* Add CentOS and Debian .vim tweaksTom Ryder2018-07-022-17/+46
|
* Map \e in Vim to force a buffer to be editableTom Ryder2018-07-021-0/+2
|
* Update insert_cancel.vim pluginTom Ryder2018-07-021-0/+0
|
* Add vim config subfile to undo Debian's changesTom Ryder2018-07-021-0/+21
|
* 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.
* Reimplement fallback for fixed_join.vimTom Ryder2018-07-021-3/+3
|
* Add insert_cancel.vim plugin and configurationTom Ryder2018-07-022-1/+3
|
* Clear away stock vim ftplugin's buffer mapsTom Ryder2018-07-011-15/+13
|
* Correct \V mappingTom Ryder2018-07-011-1/+1
|
* 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
|