]> git.sur5r.net Git - i3/i3/blob - highlighting.vim
e0966d57e2fe4489a8c2417a0914d3b9d15736f0
[i3/i3] / highlighting.vim
1 set filetype=i3cmd
2 syntax case match
3 syntax clear
4
5 syntax keyword i3specStatement state call
6 highlight link i3specStatement Statement
7
8 syntax match i3specComment /#.*/
9 highlight link i3specComment Comment
10
11 syntax region i3specLiteral start=/'/ end=/'/
12 syntax keyword i3specToken string word number end
13 highlight link i3specLiteral String
14 highlight link i3specToken String
15
16 syntax match i3specState /[A-Z_]\{3,}/
17 highlight link i3specState PreProc
18
19 syntax match i3specSpecial /[->]/
20 highlight link i3specSpecial Special