]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/syntax/gitsendemail.vim
Turn off the blur
[rbdr/dotfiles] / vim / syntax / gitsendemail.vim
CommitLineData
0d23b6e5
BB
1" Vim syntax file
2" Language: git send-email message
3" Maintainer: Tim Pope
4" Filenames: *.msg.[0-9]* (first line is "From ... # This line is ignored.")
5
6if exists("b:current_syntax")
7 finish
8endif
9
10runtime! syntax/mail.vim
11syn case match
12
13syn match gitsendemailComment "\%^From.*#.*"
14syn match gitsendemailComment "^GIT:.*"
15
16hi def link gitsendemailComment Comment
17
18let b:current_syntax = "gitsendemail"