notmuch/vim/syntax/notmuch-show.vim
2009-11-25 00:48:49 -05:00

13 lines
725 B
VimL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

" notmuch show mode syntax file
syntax region nmShowMessage start=" message{" end=" message}" contains=nmShowHeader,nmShowBody,nmShowAttachment,nmShowPart
syntax region nmShowHeader start=" header{" end=" header}" contained
syntax region nmShowBody start=" body{" end=" body}" contained contains=nmShowAttachment,nmShowPart
syntax region nmShowAttachment start=" attachment{" end=" attachment}" contained
syntax region nmShowPart start=" part{" end=" part}" contained
highlight link nmShowMessage Error
highlight link nmShowHeader Type
highlight link nmShowBody Statement
highlight link nmShowAttachment Statement
highlight link nmShowPart String