2015-07-18 22:58:24 +02:00
|
|
|
# http://docker.com
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# See https://docs.docker.com/reference/builder
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*Dockerfile %{
|
|
|
|
set buffer filetype dockerfile
|
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
addhl -group / regions dockerfile \
|
|
|
|
instruction '^(?i)(ONBUILD\h+)?(FROM|MAINTAINER|RUN|CMD|LABEL|EXPOSE|ENV|ADD|COPY|ENTRYPOINT|VOLUME|USER|WORKDIR)' '$' '' \
|
|
|
|
comment '#' '$' ''
|
|
|
|
|
|
|
|
addhl -group /dockerfile/instruction regex '^(?i)(ONBUILD\h+)?(FROM|MAINTAINER|RUN|CMD|LABEL|EXPOSE|ENV|ADD|COPY|ENTRYPOINT|VOLUME|USER|WORKDIR)' 0:keyword
|
|
|
|
|
|
|
|
addhl -group /dockerfile/instruction regions regions \
|
|
|
|
plain '^(?i)(ONBUILD\h+)?(LABEL|ENV)' '$' '' \
|
|
|
|
json '^(?i)(ONBUILD\h+)?(RUN|CMD|ADD|COPY|ENTRYPOINT|VOLUME)\h+\[' \] \[ \
|
|
|
|
sh '^(?i)(ONBUILD\h+)?(RUN|CMD|ENTRYPOINT)\h+([A-Z/a-z])+' '$' ''
|
|
|
|
|
|
|
|
addhl -group /dockerfile/instruction/regions/plain regions regions \
|
|
|
|
string '"' '(?<!\\)(\\\\)*"' '' \
|
|
|
|
string "'" "'" ''
|
|
|
|
|
|
|
|
addhl -group /dockerfile/instruction/regions/plain/regions/string fill string
|
|
|
|
|
|
|
|
addhl -group /dockerfile/instruction/regions/json ref json
|
|
|
|
addhl -group /dockerfile/instruction/regions/sh ref sh
|
|
|
|
|
|
|
|
addhl -group /dockerfile/comment fill comment
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group dockerfile-highlight global WinSetOption filetype=dockerfile %{ addhl ref dockerfile }
|
2016-09-28 08:45:01 +02:00
|
|
|
hook -group dockerfile-highlight global WinSetOption filetype=(?!dockerfile).* %{ rmhl dockerfile }
|