Initial commit.
[ppt.git] / ppt.vim
blobfe1865a7be67931c6090ae7b933fcf084f8c8266
1 " Vim syntax file
2 " Language: Using this for beamer stuff
3 " Maintainer: Not me
4 " Latest Revision: August 2010
6 " case insensitive
7 syntax case ignore
9 " Keywords
10 setlocal iskeyword+=.
11 syntax match pptPeriod /\. /
12 highlight link pptPeriod DiffChange
13 syntax keyword pptNotDerogatory print code text perl design bug bugs groff
14 syntax keyword pptNotDerogatory editor book fanzine notcourier readme
15 highlight link pptNotDerogatory Type
16 syntax keyword pptKeyword TeX
17 highlight link pptKeyword Type
18 syntax keyword pptDerogatory job jobs boredom random wikipedia
19 highlight link pptDerogatory Type
21 " Testing
22 syntax match pptIdentifier /\<\l\+\>/
23 " highlight link pptIdentifier Type
24 syntax match pptComment /#.*/
25 highlight link pptComment Visual
26 syntax region pptParens start=/(/ end=/)/
27 highlight link pptParens WildMenu
28 syntax region pptQuote start=/"/ end=/"/
29 highlight link pptQuote WildMenu
30 syntax region pptAB start=/a/ end=/b/
31 highlight link pptAB DiffAdd
32 syntax region pptCD start=/c/ end=/d/
33 highlight link pptCD DiffChange