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.

13 lines
231 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. hi link rcComment Comment
  9. let b:current_syntax = "androidrc"