Runtime files update
[MacVim.git] / runtime / syntax / gitsendemail.vim
blob154ec0765b393a23727c10dd533606659f0542b7
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:  2007 Dec 20
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"
21 " vim:set ft=vim sts=4 sw=4: