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.

17 lines
308 B

  1. ## Syntax highlighting for OpenWrt uci config files.
  2. syntax uci "/etc/config/*"
  3. comment "#"
  4. # Keywords
  5. color green "\<(package|config|option|list)\>"
  6. # Comments.
  7. color cyan "(^|[[:blank:]])#.*"
  8. # Strings.
  9. color yellow ""([^"\]|\\.)*"|'([^'\]|\\.)*'"
  10. # Trailing whitespace.
  11. color ,green "[[:space:]]+$"