aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'release/v8.9.0'v8.9.0Tom Ryder2020-01-0353-241/+481
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * release/v8.9.0: (32 commits) Update dotfiles(7) manual page Fix up some blank lines and comments Remove duplicate function definitions Rename and move HTML URL anchoring Rename HTML tidy function Correct wildcard escaping in option esc function Correct unmaps for changed mail importance maps Wrap a long comment line Remove unneeded exclamations for :command Reimplement mail header importance flagging Add trailing commas Add missing undo for strict quote map defs Move strict quote mappings beneath var guard Move ft=mail start suggestion to autoload Specify encoding of file with ZALGO comment Add abort attribute for markdown#Fold() Move Markdown folding into function Remove unneeded map#() autoload function Put a common string into a variable ...
| * Update dotfiles(7) manual pageTom Ryder2020-01-031-0/+2
| |
| * Bump VERSIONTom Ryder2020-01-031-2/+2
| |
| * Fix up some blank lines and commentsTom Ryder2020-01-039-4/+30
| |
| * Remove duplicate function definitionsTom Ryder2020-01-031-46/+0
| |
| * Rename and move HTML URL anchoringTom Ryder2020-01-033-17/+16
| |
| * Rename HTML tidy functionTom Ryder2020-01-032-2/+2
| |
| * Correct wildcard escaping in option esc functionTom Ryder2020-01-031-1/+1
| |
| * Correct unmaps for changed mail importance mapsTom Ryder2020-01-031-3/+3
| |
| * Wrap a long comment lineTom Ryder2020-01-021-1/+2
| |
| * Remove unneeded exclamations for :commandTom Ryder2020-01-022-2/+2
| |
| * Reimplement mail header importance flaggingTom Ryder2020-01-015-37/+129
| | | | | | | | | | | | | | Just for fun, write something a little more comprehensive to read in the entire mail header as a data structure, in order to add or set header fields correctly. I don't think this is totally RFC-compliant yet; I'll need to check.
| * Add trailing commasTom Ryder2019-12-301-2/+2
| |
| * Add missing undo for strict quote map defsTom Ryder2019-12-301-0/+2
| |
| * Move strict quote mappings beneath var guardTom Ryder2019-12-301-4/+6
| |
| * Move ft=mail start suggestion to autoloadTom Ryder2019-12-302-40/+41
| |
| * Specify encoding of file with ZALGO commentTom Ryder2019-12-301-0/+2
| |
| * Add abort attribute for markdown#Fold()Tom Ryder2019-12-301-1/+1
| | | | | | | | | | > vim/autoload/markdown.vim:2:1: Use the abort attribute for functions > in autoload (see Google VimScript Style Guide (Functions))
| * Move Markdown folding into functionTom Ryder2019-12-302-23/+24
| |
| * Remove unneeded map#() autoload functionTom Ryder2019-12-302-13/+1
| |
| * Put a common string into a variableTom Ryder2019-12-301-2/+5
| |
| * Add some commentsTom Ryder2019-12-301-0/+26
| |
| * Factor out HTML timestamp update into sep fileTom Ryder2019-12-302-1/+46
| |
| * Fix and refactor HTML timestamp updatingTom Ryder2019-12-281-9/+38
| |
| * Centralize default 'foldlevel'Tom Ryder2019-12-2310-23/+19
| |
| * Reshape autoloads into noun#Verb() patternTom Ryder2019-12-218-45/+44
| |
| * Fix up capitalization patterns for indent autoloadTom Ryder2019-12-2111-15/+15
| |
| * Simplify vim/bundle installation commandsTom Ryder2019-12-211-4/+4
| |
| * Revert "Delete unused autoload function"Tom Ryder2019-12-211-0/+12
| | | | | | | | This reverts commit e43249fbdf9b4a8a28c53271e832676ed5ef1c1e.
| * Make a pattern stricter for #has()Tom Ryder2019-12-211-1/+1
| |
| * Add a few comment linesTom Ryder2019-12-219-0/+49
| |
| * Delete unused autoload functionTom Ryder2019-12-211-12/+0
| |
| * uuu uuu(6df)uuuuTom Ryder2019-12-205-0/+23
| |
| * Merge branch 'release/v8.8.0' into developTom Ryder2019-12-191-2/+2
| |\
* | \ Merge branch 'release/v8.8.0'v8.8.0Tom Ryder2019-12-197-176/+7
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | * release/v8.8.0: Update spellfile_local.vim plugin to v0.1.1 Update redact_pass.vim plugin to v2.2.0 Spin spellfile_local plugin out into new plugin Use four spaces for indentation in Markdown in Vim
| * | Bump VERSIONTom Ryder2019-12-191-2/+2
| |/
| * Update spellfile_local.vim plugin to v0.1.1Tom Ryder2019-12-191-0/+0
| |
| * Update redact_pass.vim plugin to v2.2.0Tom Ryder2019-12-191-0/+0
| |
| * Spin spellfile_local plugin out into new pluginTom Ryder2019-12-194-174/+3
| |
| * Use four spaces for indentation in Markdown in VimTom Ryder2019-12-191-0/+2
| |
| * Merge branch 'release/v8.7.0' into developTom Ryder2019-12-191-2/+2
| |\
* | \ Merge branch 'release/v8.7.0'v8.7.0Tom Ryder2019-12-196-92/+183
|\ \ \ | | |/ | |/| | | | | | | | | | | | | * release/v8.7.0: Overhaul spellfile_local.vim plugin Remove complex 'spellfile' setting Comment and clean up new Vim configuration
| * | Bump VERSIONTom Ryder2019-12-191-2/+2
| |/
| * Overhaul spellfile_local.vim pluginTom Ryder2019-12-192-57/+147
| | | | | | | | Ready to be spun out into its own distribution shortly.
| * Remove complex 'spellfile' settingTom Ryder2019-12-191-25/+2
| | | | | | | | I'll replace and extend this functionality with a new plugin shortly.
| * Comment and clean up new Vim configurationTom Ryder2019-12-182-8/+32
| |
| * Merge branch 'release/v8.6.0' into developTom Ryder2019-12-181-2/+2
| |\
* | \ Merge branch 'release/v8.6.0'v8.6.0Tom Ryder2019-12-1812-71/+49
|\ \ \ | | |/ | |/| | | | | | | | | | | | | * release/v8.6.0: Refactor indent macros into autoload function Fix indentation of a Makefile line Put common indent setting patterns in macros
| * | Bump VERSIONTom Ryder2019-12-181-2/+2
| |/
| * Refactor indent macros into autoload functionTom Ryder2019-12-1814-32/+42
| | | | | | | | Much nicer.