nanorc/Dockerfile.nanorc

27 lines
817 B
Docker
Raw Normal View History

2015-09-18 20:28:59 +02:00
## Syntax highlighting for Dockerfiles
syntax "Dockerfile" "Dockerfile[^/]*$" "\.dockerfile$"
2015-09-18 20:28:59 +02:00
## Keywords
icolor red "^(FROM|MAINTAINER|RUN|CMD|LABEL|EXPOSE|ENV|ADD|COPY|ENTRYPOINT|VOLUME|USER|WORKDIR|ONBUILD)[[:space:]]"
## Brackets & parenthesis
2018-08-09 10:09:19 +02:00
color green "(\(|\)|\[|\])"
2015-09-18 20:28:59 +02:00
## Double ampersand
2018-08-09 10:09:19 +02:00
color magenta "&&"
2015-09-18 20:28:59 +02:00
## Comments
icolor cyan "^[[:space:]]*#.*$"
## Blank space at EOL
color ,green "[[:space:]]+$"
## Strings, single-quoted
2018-08-09 10:09:19 +02:00
color white "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!"
2015-09-18 20:28:59 +02:00
## Strings, double-quoted
2018-08-09 10:09:19 +02:00
color white ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\[[^]]*\]" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!"
2015-09-18 20:28:59 +02:00
## Single and double quotes
2018-08-09 10:09:19 +02:00
color yellow "('|\")"