aboutsummaryrefslogtreecommitdiff
path: root/vim
Commit message (Collapse)AuthorAgeFilesLines
* Add .wgetrc Vim filetypeTom Ryder2018-06-111-0/+4
|
* Add crontab(5) Vim filetypeTom Ryder2018-06-111-0/+4
|
* Update markdown_autoformat.vimTom Ryder2018-06-101-0/+0
|
* Use uppercase letters in <C-A>, <C-B> consistentlyTom Ryder2018-06-101-2/+2
|
* Update strip_trailing_whitespace.vim pluginTom Ryder2018-06-101-0/+0
|
* Update redact_pass.vim plugin againTom Ryder2018-06-101-0/+0
|
* Update redact_pass.vim pluginTom Ryder2018-06-101-0/+0
|
* Update copy_linebreak pluginTom Ryder2018-06-071-0/+0
|
* Set some more 'listchars' optionsTom Ryder2018-06-071-3/+5
|
* Replace mail_mutt.vim with mim(1df)Tom Ryder2018-06-072-7/+0
| | | | Way better, and more generally useful.
* Include .gvimrc patterns for vim filetypeTom Ryder2018-06-061-1/+1
|
* Merge branch 'hotfix/v0.48.1' into developTom Ryder2018-06-061-0/+3
|\ | | | | | | | | | | * hotfix/v0.48.1: Bump VERSION Add compatibility guard to filetype.vim
| * Add compatibility guard to filetype.vimTom Ryder2018-06-061-0/+3
| |
* | Remove vestigial comment from .vimrcTom Ryder2018-06-061-6/+0
| |
* | Remove duplicate 'encoding' settingTom Ryder2018-06-061-5/+0
| |
* | Remove 'backupskip' settingTom Ryder2018-06-061-4/+0
| |
* | Inline some option flag commentsTom Ryder2018-06-061-32/+16
| |
* | Add a little more syntax contextTom Ryder2018-06-061-2/+2
| |
* | Move syntax block upTom Ryder2018-06-061-18/+18
| |
* | Check for 'formatlistpat' option existenceTom Ryder2018-06-061-3/+5
| |
* | Correct ksh patternTom Ryder2018-06-061-1/+1
|/
* Add custom scripts.vimTom Ryder2018-06-062-52/+69
| | | | Including adding sed support
* Factor out password redaction into new pluginTom Ryder2018-06-062-43/+0
|
* Spacing adjustmentsTom Ryder2018-06-061-4/+0
|
* Abbreviate and invert j/gj,k/gk mappingsTom Ryder2018-06-061-4/+4
|
* Refactor vim/vimrcTom Ryder2018-06-061-172/+127
| | | | | Rearranging order where logical, adjust comments, remove line continuation guard and just join all relevant lines.
* Consolidate .vimrc and .vim/filetype.vimTom Ryder2018-06-0669-781/+807
| | | | And add .vim/script.vim, to be composed in the next commit
* Update markdown/autoformat.vimTom Ryder2018-06-051-0/+0
|
* Merge branch 'hotfix/v0.47.1' into developTom Ryder2018-06-051-0/+0
|\ | | | | | | | | | | * hotfix/v0.47.1: Bump VERSION Update submodules
| * Update submodulesTom Ryder2018-06-051-0/+0
| |
* | Correct a path in a VimL commentTom Ryder2018-06-051-1/+1
|/
* Spin off markdown_autoformat as its own distroTom Ryder2018-06-052-108/+0
|
* Restore ftplugin extras to vim/after dirTom Ryder2018-06-053-0/+0
| | | | | This reverts commit a14bc50. Changed my mind; decided it's tidier this way.
* Add ftplugin infrastructure and commentsTom Ryder2018-06-051-6/+16
| | | | Preparing for spinoff release
* Add global options for markdown_autoformat.vimTom Ryder2018-06-051-13/+19
|
* Use += shorthand in Vim ftpluginTom Ryder2018-06-051-1/+1
| | | | | We're already very dependent on Vim >=7 for this ftplugin, so we may as well use all its syntactic sugar.
* Pass in mapped key directly, not a flagTom Ryder2018-06-051-8/+4
| | | | This seems obvious now.
* Use correct function for function existence checkTom Ryder2018-06-041-3/+3
|
* Move Markdown and PHP ftplugins from after dirTom Ryder2018-06-043-0/+0
| | | | | | | Because we use our own private copies of the primary filetype plugins, they'll get loaded in the correct order from here. Also adjust Makefile to accommodate the extra level.
* Make private copy of ftplugin/markdown.vimTom Ryder2018-06-041-0/+43
|
* Correct a comment in ftplugin/php.vimTom Ryder2018-06-041-1/+1
|
* Support counts and registers in paste wrappingTom Ryder2018-06-041-3/+3
|
* Rearrange/correct markdown_autoformat.vimTom Ryder2018-06-041-19/+9
|
* Use case-insensitive Vim ==#Tom Ryder2018-06-043-3/+3
|
* Clear markdown_autoformat.vim autocmds correctlyTom Ryder2018-06-041-1/+1
|
* Move markdown_autoformat.vim funcs back to localTom Ryder2018-06-042-67/+64
| | | | No advantage to making them autoload
* Don't load my HTML ftplugins for Markdown typesTom Ryder2018-06-043-3/+15
| | | | | | The stock markdown.vim file loads in all the html.vim ftplugins too. This is probably a good idea for the stock files, but none of my HTML extension plugins are appropriate for Markdown, so exclude them.
* Set and clear Markdown autocmd in groupTom Ryder2018-06-041-4/+13
|
* Use heuristics on Markdown to guess autoformatTom Ryder2018-06-042-0/+28
|
* Refactor suspend_autoformat.vim, add autoloadTom Ryder2018-06-043-34/+72
| | | | | | | | * Add a function to suspend autoformatting for the duration of pasting lines. * Factor the ftplugin's functions out to be autoloaded; this requires Vim >=7.0, but it already needed that. * Add Makefile infrastructure for new autoload directories/files.