blob: b1c10e070299e87e81564a9d4fb3db857a433896 (
plain)
1
2
3
4
5
6
7
|
syn clear
syn match stplPattern /^\S.*$/
syn match stplSnippet /^\t.*$/ contains=stplPlaceHolder
syn region stplPlaceHolder start="{{" end="}}"
hi def link stplPattern Special
hi def link stplPlaceHolder Keyword
|