]> git.sur5r.net Git - i3/i3/blob - parser-specs/highlighting.vim
Merge branch 'release-4.16.1'
[i3/i3] / parser-specs / 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