aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/syntax/notmuch-show.vim
blob: 06dd2ea2a262d1e45e535184242b45b13c2d08d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
" 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