blob: cfcb48bd841baeab0c81322bb9f407a7d652f857 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
## Syntax highlighting for OpenWrt uci config files.
syntax uci "/etc/config/*"
comment "#"
# Keywords
color green "\<(package|config|option|list)\>"
# Comments.
color cyan "(^|[[:blank:]])#.*"
# Unterminated strings.
color lightmagenta ""([^"\]|\\.)*[^"\]|'([^'\]|\\.)*[^'\]"
# Strings.
color yellow ""([^"\]|\\.)*"|'([^'\]|\\.)*'"
# Trailing whitespace.
color ,green "[[:space:]]+$"
|