aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'hotfix/v0.47.3'v0.47.3Tom Ryder2018-06-052-5/+5
|\ | | | | | | | | | | * hotfix/v0.47.3: Bump VERSION Correct install-vim-ftplugin target
| * Bump VERSIONTom Ryder2018-06-051-2/+2
| |
| * Correct install-vim-ftplugin targetTom Ryder2018-06-051-3/+3
|/
* Merge branch 'hotfix/v0.47.2'v0.47.2Tom Ryder2018-06-052-4/+4
|\ | | | | | | | | | | * hotfix/v0.47.2: Bump VERSION Revert "Merge bundle install into one command"
| * Bump VERSIONTom Ryder2018-06-051-2/+2
| |
| * Revert "Merge bundle install into one command"Tom Ryder2018-06-051-2/+2
|/ | | | | | | This reverts commit 39627969dac81be22aef4c0a50548f9e31ed19f9. I remember now why this is required. Otherwise it copies in README.markdown and VERSION etc from the plugin roots.
* Merge branch 'hotfix/v0.47.1'v0.47.1Tom Ryder2018-06-052-2/+2
|\ | | | | | | | | | | * hotfix/v0.47.1: Bump VERSION Update submodules
| * Bump VERSIONTom Ryder2018-06-051-2/+2
| |
| * Update submodulesTom Ryder2018-06-051-0/+0
|/
* Merge branch 'release/v0.47.0'v0.47.0Tom Ryder2018-06-057-107/+9
|\ | | | | | | | | | | | | | | | | | | | | | | * release/v0.47.0: Bump VERSION Spin off markdown_autoformat as its own distro Merge bundle install into one command Restore ftplugin extras to vim/after dir Add ftplugin infrastructure and comments Add global options for markdown_autoformat.vim Use += shorthand in Vim ftplugin Pass in mapped key directly, not a flag
| * Bump VERSIONTom Ryder2018-06-051-2/+2
| |
| * Spin off markdown_autoformat as its own distroTom Ryder2018-06-053-108/+3
| |
| * Merge bundle install into one commandTom Ryder2018-06-051-2/+2
| |
| * Restore ftplugin extras to vim/after dirTom Ryder2018-06-054-7/+2
| | | | | | | | | | 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.
| * Merge branch 'release/v0.46.0' into developTom Ryder2018-06-041-2/+2
| |\ | | | | | | | | | | | | * release/v0.46.0: Bump VERSION
* | \ Merge branch 'release/v0.46.0'v0.46.0Tom Ryder2018-06-047-8/+56
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | * release/v0.46.0: Bump VERSION Use correct function for function existence check Move Markdown and PHP ftplugins from after dir Make private copy of ftplugin/markdown.vim Correct a comment in ftplugin/php.vim
| * | Bump VERSIONTom Ryder2018-06-041-2/+2
| |/
| * Use correct function for function existence checkTom Ryder2018-06-041-3/+3
| |
| * Move Markdown and PHP ftplugins from after dirTom Ryder2018-06-044-2/+7
| | | | | | | | | | | | | | 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
| |
| * Merge branch 'release/v0.45.0' into developTom Ryder2018-06-041-2/+2
| |\ | | | | | | | | | | | | * release/v0.45.0: Bump VERSION
* | \ Merge branch 'release/v0.45.0'v0.45.0Tom Ryder2018-06-047-39/+117
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.45.0: Bump VERSION Support counts and registers in paste wrapping Rearrange/correct markdown_autoformat.vim Use case-insensitive Vim ==# Clear markdown_autoformat.vim autocmds correctly Move markdown_autoformat.vim funcs back to local Don't load my HTML ftplugins for Markdown types Set and clear Markdown autocmd in group Use heuristics on Markdown to guess autoformat Refactor suspend_autoformat.vim, add autoload Add mail ftdetect rules
| * | Bump VERSIONTom Ryder2018-06-041-2/+2
| |/
| * 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-043-77/+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-044-34/+82
| | | | | | | | | | | | | | | | * 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.
| * Add mail ftdetect rulesTom Ryder2018-06-031-0/+4
| |
| * Merge branch 'release/v0.44.0' into developTom Ryder2018-06-031-2/+2
| |\ | | | | | | | | | | | | * release/v0.44.0: Bump VERSION
* | \ Merge branch 'release/v0.44.0'v0.44.0Tom Ryder2018-06-035-28/+54
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | * release/v0.44.0: Bump VERSION Correct logic of Markdown/text spell checking Vim ftplugin: hold autoformat in *.md code blocks Remove accidentally committed ";" file
| * | Bump VERSIONTom Ryder2018-06-031-2/+2
| |/
| * Merge branch 'release/v0.43.0' into developTom Ryder2018-06-031-2/+2
| |\ | | | | | | | | | | | | * release/v0.43.0: Bump VERSION
| * | Correct logic of Markdown/text spell checkingTom Ryder2018-06-032-14/+18
| | |
| * | Vim ftplugin: hold autoformat in *.md code blocksTom Ryder2018-06-031-0/+34
| | |
| * | Remove accidentally committed ";" fileTom Ryder2018-06-031-12/+0
| | |
* | | Merge branch 'release/v0.43.0'v0.43.0Tom Ryder2018-06-0351-69/+326
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v0.43.0: Bump VERSION Revamp vint script with blacklist not whitelist Add missing vint targets Add shebang and opening tag detect for PHP Refine shebangs in filetype detection Implement personal filetype.vim Correct name of Makefile target Refactor Vim distribution plugin/macro handling Rebuild help tags after installing bundle Use full commands in buffer cycle mappings Upgrade mail_mutt.vim plugin to v0.2.0
| * | Bump VERSIONTom Ryder2018-06-031-2/+2
| |/
| * Revamp vint script with blacklist not whitelistTom Ryder2018-06-031-22/+18
| |
| * Add missing vint targetsTom Ryder2018-06-031-0/+2
| |
| * Add shebang and opening tag detect for PHPTom Ryder2018-06-032-0/+20
| |