aboutsummaryrefslogtreecommitdiff
path: root/vim/filetype.vim
Commit message (Collapse)AuthorAgeFilesLines
* Remove Perl-6/Raku support for the momentTom Ryder2021-02-131-7/+1
|
* Add Golang filetype for *.go to VimTom Ryder2021-02-031-0/+4
|
* Add subtype flag for printcap Vim filetypeTom Ryder2020-05-211-1/+2
|
* Add printcap filetype detection in VimTom Ryder2020-05-211-0/+4
|
* Add a few more filetype detection hooksTom Ryder2020-05-161-0/+27
|
* Correct a commentTom Ryder2020-05-161-1/+1
|
* Add Mutt config match patterns for XDGTom Ryder2020-05-141-1/+2
|
* Use XDG basedirs for Git configTom Ryder2020-05-121-0/+1
|
* Some spelling fixesTom Ryder2020-05-091-4/+4
|
* Rename filetype repeat commandsTom Ryder2020-01-031-2/+2
|
* Use simpler "conf" filetype for .conf not "config"Tom Ryder2019-12-101-1/+1
|
* Support .yml extension for Vim ft=yamlTom Ryder2019-08-011-1/+2
|
* Revert to vimrc filenameTom Ryder2019-06-221-2/+6
|
* Add a path to Vim help filesTom Ryder2019-06-211-0/+1
|
* Whoops, forgot some vimrc file patternsTom Ryder2019-06-201-2/+2
|
* Rename vimrc and gvimrc to have .vim suffixTom Ryder2019-06-201-9/+3
| | | | | Since they don't need to have the same names when installed, this makes it marginally easier to set filetypes without special paths.
* Type proto/*.pro files as CTom Ryder2019-06-191-0/+1
|
* Define Perl::Critic config files as .ini formatTom Ryder2019-06-181-1/+3
|
* Add "GNUmakefile" to Vim ft=make patternTom Ryder2019-06-151-0/+1
|
* Remove unneeded password filetypeTom Ryder2019-06-141-6/+0
|
* Shorten filetype.vim load guardTom Ryder2019-05-301-8/+2
|
* Add filename pattern without period for viminfoTom Ryder2019-05-251-0/+1
|
* Move shebang change filetype hooks into pluginTom Ryder2019-05-211-6/+0
|
* Move single ftdetect rule into filetype.vimTom Ryder2019-05-181-0/+10
|
* Adjust formatting of autocmdTom Ryder2019-05-171-1/+3
|
* Remove unnecessary g: prefixes to Vim variablesTom Ryder2019-05-091-2/+2
|
* Add textarea filetypeTom Ryder2019-03-281-0/+4
| | | | | | | | This custom filetype is just a hook to hang functionality for TextEditorAnywhere documents under Windows. Most of the time, it's me writing email, or comments that benefit from email formatting, so I've configured <LocalLeader>f to switch to the mail filetype. This switching could probably benefit from a plugin, actually.
* Correct short :setf to :setfiletype commandTom Ryder2019-03-281-1/+1
|
* Add Lisp to filetypes.vimTom Ryder2019-01-031-0/+7
|
* Add new filetype pattern for muttrcTom Ryder2019-01-021-0/+1
|
* Move filetype.vim helper funcs into autoloadTom Ryder2018-12-081-78/+3
| | | | | May as well, now that we've dropped support for versions of Vim that don't have it.
* Restore filetype.vim shortcircuitTom Ryder2018-11-301-2/+2
|
* Suppress ~/.vim usage during vimrc version checkTom Ryder2018-11-301-2/+2
|
* Don't load my filetype.vim if Vim is too oldTom Ryder2018-11-301-2/+2
|
* Require Vim 7 for filetype and syntax highlightsTom Ryder2018-11-301-6/+3
| | | | | | It's time! The rest of the vimrc can probably be allowed to load, though.
* Make more of an effort with sudoedit(8) stripsTom Ryder2018-11-221-8/+44
| | | | | | | | | | | | | | Handle both kinds of templated temporary files produced by sudoedit(8): * /var/tmp/foo.XXXXXXXX * /var/tmp/fooXXXXXXXX.bar This means that editing /etc/resolv.conf now highlights correctly, having also in this commit moved the sudo detection to *before* the .conf fallback. The hardcoded temporary path for finding the files probably needs to be either determined at runtime or made configurable by the user.
* Add resolv.conf Vim filetype detectionTom Ryder2018-11-221-0/+4
|
* Add hostconf Vim filetype detection for hosts(5)Tom Ryder2018-11-221-0/+4
|
* Convert a few stridx() to alternative formsTom Ryder2018-08-271-1/+1
| | | | | | If we don't actually want to know whether the string occurs *anywhere* in the line, just at the start, we should really use substring operations or plain old regular expression tests.
* Add ASM to Vim filetypesTom Ryder2018-08-061-0/+4
|
* Make a filetype.vim comment consistentTom Ryder2018-07-161-1/+1
|
* Remove pattern \m where not needed for 'magic'Tom Ryder2018-07-151-3/+3
|
* Add missing dot to mutt filetype.vim pathTom Ryder2018-07-101-1/+1
|
* Adjust comment on scripts.vim loadTom Ryder2018-07-091-3/+3
|
* Adjust comments in filetype.vimTom Ryder2018-07-091-3/+5
|
* Add patterns for Vim help file detectionTom Ryder2018-07-081-0/+2
|
* Move shebang updating into filetype.vimTom Ryder2018-07-081-0/+13
| | | | Much more logical location.
* Correct alphabetical order of filetype.vimTom Ryder2018-07-041-34/+34
|
* Refactor filetype-specific .vimrc materialTom Ryder2018-06-261-12/+12
| | | | | | | | Put filetype bindings into a separate file filemap.vim at the same level as filetype.vim, to be loaded directly after the "filetype" command. This removes per-filetype logic one step from ~/.vimrc, which seems appropriate, and also allows me to use long line breaks in the new file.
* Expand/fix messages filetype detectionTom Ryder2018-06-251-2/+2
|