aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove 'timeout' and related Vim settingsTom Ryder2018-06-201-9/+0
| | | | More over-setting, for a problem I'm not sure I ever actually had.
* Remove 'ttyfast' settingTom Ryder2018-06-201-4/+0
| | | | | It defaults to on based on the terminal type, which seems pretty sensible, and seems to work fine with my tmux settings.
* Reduce 'formatoptions' flag toggling to just 'a'Tom Ryder2018-06-201-11/+2
| | | | | The other three that I've removed are almost certainly better in filetype plugins.
* Simplify .vim 'paste' and 'pastetoggle' settingsTom Ryder2018-06-201-5/+1
| | | | | 'paste' is off by default, obviously, and a terser comment can describe 'pastetoggle'.
* Remove 'scrolloff' and 'sidescrolloff' .vimrc setTom Ryder2018-06-201-7/+1
| | | | | 'scrolloff' defaults to 0 anyway, and I don't often run into 'sidescrolloff' at all.
* Remove 'autoread' and 'autowrite' .vimrc settingsTom Ryder2018-06-201-8/+0
| | | | These seem like antipatterns, on reflection.
* Add '**' to Vim 'path' rather than replacing itTom Ryder2018-06-201-1/+1
|
* Simplify boolean toggle options in .vimrcTom Ryder2018-06-201-8/+4
| | | | | 'list', 'number', and 'spell' all default to off with a .vimrc, so they don't need to be set and can just have the mapping.
* Remove 'complete' setting in .vimrcTom Ryder2018-06-201-4/+0
| | | | I nearly never use completion anyway, so best just to leave this out.
* Tidy 'ruler' setting in .vimrcTom Ryder2018-06-201-4/+1
|
* Remove .vimrc 'showmode' settingTom Ryder2018-06-201-3/+0
| | | | It defaults to being on in Vim.
* Remove Vim 'showcmd' settingTom Ryder2018-06-201-3/+0
| | | | I don't actually look at the keys I'm entering that often, if ever.
* Remove .vimrc 'history' settingTom Ryder2018-06-201-3/+0
| | | | | I don't think I can actually remember an instance of having needed to recall beyond the 50th command or search pattern.
* Remove .vimrc 'switchbuf' settingsTom Ryder2018-06-201-7/+0
| | | | I never use it.
* Remove .vimrc 'backupext' settingTom Ryder2018-06-201-3/+0
| | | | | The default is fine, since any backups will be tucked away in a directory chosen by auto_cache_dirs.vim anyway, if possible.
* Use a simpler test for colorscheme absenceTom Ryder2018-06-201-1/+1
|
* Add after/ftplugin for gitcommit to quote with >Tom Ryder2018-06-201-0/+25
| | | | | | I love the way this works when writing mail, and find myself missing it when writing Git commits that include block quotes. This is ported from ftplugin/mail.vim.
* Use case sensitivity explicit operator in .vimrcTom Ryder2018-06-201-1/+1
|
* Remove .vimrc 'backup', 'writebackup' settingsTom Ryder2018-06-201-7/+1
| | | | | | | | | | | | | 'backup' is off by default, and :help 'writebackup' recommends against disabling it: > WARNING: Switching this option off means that when Vim fails to write > your buffer correctly and then, for whatever reason, Vim exits, you > lose both the original file and what you were writing. Only reset > this option if your file system is almost full and it makes the write > fail (and make sure not to exit Vim until the write was successful). The auto_cache_dirs.vim plugin turns this on if it sensibly can, anyway.
* Refine colorscheme selection logicTom Ryder2018-06-201-5/+7
|
* Remove some unneeded silencingTom Ryder2018-06-191-20/+20
|
* Remove unneeded <silent>Tom Ryder2018-06-191-1/+1
|
* Move filetype print mapping to more logical placeTom Ryder2018-06-191-4/+3
|
* Simplify syntax settingsTom Ryder2018-06-191-3/+2
|
* Rearrange filetype.vim final stanzasTom Ryder2018-06-191-3/+3
|
* Add fallback log filetypeTom Ryder2018-06-181-1/+5
|
* Correct a filetype.vim commentTom Ryder2018-06-181-1/+1
|
* Merge branch 'hotfix/v0.56.1' into developTom Ryder2018-06-172-3/+3
|\ | | | | | | | | | | * hotfix/v0.56.1: Bump VERSION Add missing !
| * Bump VERSIONTom Ryder2018-06-171-2/+2
| |
| * Add missing !Tom Ryder2018-06-171-1/+1
| |
| * Merge branch 'release/v0.56.0'v0.56.0Tom Ryder2018-06-179-2/+2
| |\ | | | | | | | | | | | | | | | | | | * release/v0.56.0: Bump VERSION Update plugins Update big_file_options.vim
| * \ Merge branch 'release/v0.55.0'v0.55.0Tom Ryder2018-06-1718-193/+137
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.55.0: Bump VERSION Update auto_cache_dirs.vim Update markdown_autoformat.vim Update insert_suspend_hlsearch.vim Use autoload function for tidy filters Refine compiler#Make() function Use autoload function for temp-makeprg :lmake Add local copy of php.vim compiler
| * \ \ Merge branch 'release/v0.54.0'v0.54.0Tom Ryder2018-06-1733-572/+647
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.54.0: Regenerate dotfiles(7) manual Bump VERSION Add note about compiler scripts Arrange for tidiers to hold window position Update markdown_autoformat.vim Update surround.vim Completely overhaul after/ftplugin files Use short-circuit for no-mapping check Correct g:current_compiler setting Consistently require 'nocompatible' for ftplugins Upgrade insert_suspend_hlsearch.vim Use `function!` consistently in ftplugins Fix comments in vim/filetype.vim Set 'comments' blank by default Add Xresources filenames Add more names to Vim Bash types
| * \ \ \ Merge branch 'release/v0.53.0'v0.53.0Tom Ryder2018-06-144-40/+48
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.53.0: Bump VERSION Correct comment on 'shm' i Remove redundant NR==1 in awk(1) call Refactor tilde and extension stripping
| * \ \ \ \ Merge branch 'release/v0.52.0'v0.52.0Tom Ryder2018-06-138-80/+352
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.52.0: Bump VERSION Use proper version test for 'fo' j Check for +unix before binding date commands Correct Mutt filename pattern Add Ruby shebang Don't require num suffix to Python shebang word Accept "5" as suffix to Perl shebang word Add TCL shebang handling Lots of extension to filetype.vim Rename terminfo files to *.ti extension Add .wgetrc Vim filetype Add crontab(5) Vim filetype Apply t_cm hack to Makefile Vim invocation
| * \ \ \ \ \ Merge branch 'release/v0.51.0'v0.51.0Tom Ryder2018-06-115-4/+5
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.51.0: Update VERSION Update markdown_autoformat.vim Use uppercase letters in <C-A>, <C-B> consistently Define `self` var for mim(1df) Update strip_trailing_whitespace.vim plugin
| * \ \ \ \ \ \ Merge branch 'release/v0.50.0'v0.50.0Tom Ryder2018-06-1012-16/+48
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.50.0: Bump VERSION Update redact_pass.vim plugin again Update redact_pass.vim plugin Update copy_linebreak plugin Set some more 'listchars' options Replace mail_mutt.vim with mim(1df) Include .gvimrc patterns for vim filetype
| * \ \ \ \ \ \ \ Merge branch 'release/v0.49.0'v0.49.0Tom Ryder2018-06-064-66/+42
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.49.0: Bump VERSION Remove vestigial comment from .vimrc Remove duplicate 'encoding' setting Remove 'backupskip' setting Inline some option flag comments Add a little more syntax context Move syntax block up Check for 'formatlistpat' option existence Correct ksh pattern
| * \ \ \ \ \ \ \ \ Merge branch 'hotfix/v0.48.2'v0.48.2Tom Ryder2018-06-062-7/+2
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * hotfix/v0.48.2: Bump VERSION Remove duplicate 'encoding' setting
* | \ \ \ \ \ \ \ \ \ Merge branch 'release/v0.56.0' into developTom Ryder2018-06-171-2/+2
|\ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.56.0: Bump VERSION
| * | | | | | | | | | Bump VERSIONTom Ryder2018-06-171-2/+2
|/ / / / / / / / / /
* | | | | | | | | | Merge branch 'release/v0.55.0' into developTom Ryder2018-06-171-2/+2
|\ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.55.0: Bump VERSION
| * | | | | | | | | Bump VERSIONTom Ryder2018-06-171-2/+2
| | | | | | | | | |
* | | | | | | | | | Update pluginsTom Ryder2018-06-178-0/+0
| | | | | | | | | |
* | | | | | | | | | Update big_file_options.vimTom Ryder2018-06-171-0/+0
|/ / / / / / / / /
* | | | | | | | | Update auto_cache_dirs.vimTom Ryder2018-06-171-0/+0
| | | | | | | | |
* | | | | | | | | Update markdown_autoformat.vimTom Ryder2018-06-171-0/+0
| | | | | | | | |
* | | | | | | | | Update insert_suspend_hlsearch.vimTom Ryder2018-06-171-0/+0
| | | | | | | | |
* | | | | | | | | Use autoload function for tidy filtersTom Ryder2018-06-173-26/+19
| | | | | | | | |
* | | | | | | | | Refine compiler#Make() functionTom Ryder2018-06-171-1/+23
| | | | | | | | |