mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4cb71f8082
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
26 lines
869 B
Text
26 lines
869 B
Text
## Syntax highlighting for Dockerfiles
|
|
syntax "Dockerfile" "Dockerfile[^/]*$"
|
|
|
|
## Keywords
|
|
icolor red "^(ONBUILD\s+)?(ADD|ARG|CMD|COPY|ENTRYPOINT|ENV|EXPOSE|FROM|HEALTHCHECK|LABEL|MAINTAINER|RUN|SHELL|STOPSIGNAL|USER|VOLUME|WORKDIR)[[:space:]]"
|
|
|
|
## Brackets & parenthesis
|
|
color brightgreen "(\(|\)|\[|\])"
|
|
|
|
## Double ampersand
|
|
color brightmagenta "&&"
|
|
|
|
## Comments
|
|
icolor cyan "^[[:space:]]*#.*$"
|
|
|
|
## Blank space at EOL
|
|
color ,green "[[:space:]]+$"
|
|
|
|
## Strings, single-quoted
|
|
color brightwhite "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!"
|
|
|
|
## Strings, double-quoted
|
|
color brightwhite ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\[[^]]*\]" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!"
|
|
|
|
## Single and double quotes
|
|
color brightyellow "('|\")"
|