2 " Language: git send-email message
4 " Filenames: *.msg.[0-9]* (first line is "From ... # This line is ignored.")
6 if exists("b:current_syntax")
10 runtime! syntax/mail.vim
13 syn match gitsendemailComment "\%^From.*#.*"
14 syn match gitsendemailComment "^GIT:.*"
16 hi def link gitsendemailComment Comment
18 let b:current_syntax = "gitsendemail"