You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
299 B

" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
finish
endif
" case sensitive
syn case match
syn match rcComment "^[ \t]*#.*$"
syn match rcProperty "\${[a-z\.]\+}"
hi link rcComment Comment
hi link rcProperty Identifier
let b:current_syntax = "androidrc"