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.
|
|
" 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]*#.*$"
hi link rcComment Comment
let b:current_syntax = "androidrc"
|