aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin
Commit message (Collapse)AuthorAgeFilesLines
* Refine apostrophe matching for mail greetingsTom Ryder2019-05-271-2/+2
|
* Tolerate smart quotes in g'dayTom Ryder2019-05-251-1/+1
| | | | My dad just sent me one.
* Tolerate spaces for final reply moveTom Ryder2019-05-241-1/+1
|
* Don't strip tabs after angle quotesTom Ryder2019-05-241-2/+2
| | | | Don't solve problems we don't have yet
* More revision/expansion of blank/greeting stripTom Ryder2019-05-241-17/+20
|
* Break up and improve greeting patternTom Ryder2019-05-241-1/+5
|
* Make greeting regex even nuttierTom Ryder2019-05-241-3/+3
| | | | Needs to be split into two lines now.
* Delete blank lines at top of quoted replyTom Ryder2019-05-231-0/+7
|
* Don't add spaces when quoting mailTom Ryder2019-05-231-0/+4
|
* Fix "break" in favour of "continue"Tom Ryder2019-05-231-1/+1
|
* Improve blank line squeeze behaviour for mailTom Ryder2019-05-231-3/+10
| | | | | | | Don't squeeze blank lines if there are no quote prefixes in the message, suggesting that this is a new message and that we will be wanting to keep the two blank lines between the header and the signature, so that "o" just starts writing a message, like I'm used to.
* Don't add a space to trailing quotesTom Ryder2019-05-231-2/+2
|
* Prevent unneeded capture of group in greet regexTom Ryder2019-05-231-1/+1
|
* Correct :return to :breakTom Ryder2019-05-231-1/+1
|
* Run repeat blank squeeze on mail replyTom Ryder2019-05-231-1/+2
|
* Normalise quoting in mailTom Ryder2019-05-231-0/+21
|
* Strip trailing blanks after greetingTom Ryder2019-05-231-1/+1
|
* Improve opening-greeting strip from mail ftpluginTom Ryder2019-05-231-3/+3
|
* Remove HTML ftplugin import from Markdown ftpluginTom Ryder2019-05-231-5/+0
| | | | | I never liked this much. Removing it from my own copy of the ftplugin allows me to remove my working around it in the after script.
* Move my after ftplugin for Markdown into mainTom Ryder2019-05-231-44/+0
|
* Add undo instructions for Markdown heading stuffTom Ryder2019-05-231-0/+3
|
* Adjust order of Markdown heading mapsTom Ryder2019-05-231-2/+2
|
* Define user command MarkdownHeadingTom Ryder2019-05-231-2/+4
|
* Set 'include' and 'path' in Vim script filesTom Ryder2019-05-231-0/+6
|
* Remove '\'' sh ftplugin map; <Esc> interferenceTom Ryder2019-05-211-9/+0
|
* Add mappings and function for Markdown headingsTom Ryder2019-05-211-0/+6
|
* Use nicer patch-checking syntaxTom Ryder2019-05-201-3/+1
| | | | This syntax is supported for 7.4.237 and above.
* Start spell-checking HTMLTom Ryder2019-05-191-0/+6
|
* Don't bother checking for the 'spell' featureTom Ryder2019-05-191-15/+10
|
* Split long lines with version/patch check patternTom Ryder2019-05-171-1/+2
|
* Adjust 'commentstring' and 'include' C Vim settingTom Ryder2019-05-111-4/+5
|
* Replace text.vim ftplugin entirelyTom Ryder2019-05-111-5/+0
| | | | | This makes more sense than dancing around the potential availability of the stock one.
* Remove unnecessary g: prefixes to Vim variablesTom Ryder2019-05-0911-14/+14
|
* Adjust matchit words for Vim filetypeTom Ryder2019-04-301-0/+12
| | | | | Don't match the opening of control blocks with "return", "break", "continue" statements within; doesn't seem right to me.
* Set 'keywordprg' to :help for older VimsTom Ryder2019-04-011-0/+7
| | | | | I didn't realise this had been introduced in the stock runtime files so late.
* Correct unmapping commands for sh '\''Tom Ryder2019-01-151-2/+2
|
* Correct function reference in gitcommit ftpluginTom Ryder2019-01-071-1/+1
|
* Remove superfluous unmappings for mail filetypeTom Ryder2019-01-061-7/+0
|
* Clarify a comment for HTML indentationTom Ryder2019-01-061-2/+3
|
* Add test to 'keywordprg' setting for Vim helpTom Ryder2019-01-061-3/+6
|
* Make name of autocmd group more specificTom Ryder2019-01-061-4/+4
|
* Clarify a commentTom Ryder2019-01-061-1/+1
|
* Choose regex character classes for some filetypesTom Ryder2018-12-293-0/+12
|
* Make <LocalLeader>f to toggle HTML/PHPTom Ryder2018-12-192-0/+10
| | | | | I'm thinking I might make this a generic mapping for "alternate filetype".
* Add sh.vim mapping to insert '\'' quicklyTom Ryder2018-12-191-0/+9
| | | | | | This was added as a Bash Readline macro in commit 25b513d, and has proven to be very useful. I don't normally like insert mode maps in Vim, especially Alt keys, so I'm not sure this will stick; we'll see.
* Remove b:undo_ftplugin cmds for double-key mapsTom Ryder2018-12-044-7/+0
| | | | | The relevant maps were removed in commit 5f1f5b9, but these unmap instructions were left behind.
* Remove accidentally created html.vim~ fileTom Ryder2018-12-041-35/+0
|
* Use :help for 'keywordprg', junk tag bindingTom Ryder2018-12-041-5/+8
| | | | This is a much nicer approach.
* Unseat tidy(1) as HTML 'equalprg'Tom Ryder2018-12-042-3/+43
| | | | | Instead, remap \= specifically to use tidy(1) to reformat the whole buffer.
* Remove some overzealous b:undo_* settingTom Ryder2018-11-292-23/+0
| | | | | It's not that these shouldn't be set, it's more that it's the wrong place to do it, especially before they've caused any actual problems.