blob: 8b938116fa7988a44c592577c7aea0c8e05170f0 [file] [log] [blame]
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00001" 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.")
Bram Moolenaar7a329912010-05-21 12:05:36 +02005" Last Change: 2010 May 21
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00006
7if exists("b:current_syntax")
Bram Moolenaar7a329912010-05-21 12:05:36 +02008 finish
Bram Moolenaarc1a11ed2008-06-24 22:09:24 +00009endif
10
11runtime! syntax/mail.vim
12syn case match
13
14syn match gitsendemailComment "\%^From.*#.*"
15syn match gitsendemailComment "^GIT:.*"
16
17hi def link gitsendemailComment Comment
18
19let b:current_syntax = "gitsendemail"