update vim to 7.4
[msysgit.git] / share / vim / vim73 / syntax / gitsendemail.vim
blob8b938116fa7988a44c592577c7aea0c8e05170f0
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 " Last Change:  2010 May 21
7 if exists("b:current_syntax")
8   finish
9 endif
11 runtime! syntax/mail.vim
12 syn case match
14 syn match   gitsendemailComment "\%^From.*#.*"
15 syn match   gitsendemailComment "^GIT:.*"
17 hi def link gitsendemailComment Comment
19 let b:current_syntax = "gitsendemail"