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

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