summaryrefslogtreecommitdiffstats
path: root/syntax/dockerfile.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2014-12-22 21:57:06 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2014-12-22 21:57:06 +0100
commitd8eaa50aed67af1666c3e45b719510253800ca8d (patch)
tree98d4563eb29fecdf7a8fcf3e0d6cf61c0d1977df /syntax/dockerfile.vim
parent8e26e6e963434108d418557cd48cf6604de30c0d (diff)
downloadvim-polyglot-d8eaa50aed67af1666c3e45b719510253800ca8d.tar.gz
vim-polyglot-d8eaa50aed67af1666c3e45b719510253800ca8d.zip
Update
Diffstat (limited to 'syntax/dockerfile.vim')
-rw-r--r--syntax/dockerfile.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/dockerfile.vim b/syntax/dockerfile.vim
index c3a9c4e0..60b395ea 100644
--- a/syntax/dockerfile.vim
+++ b/syntax/dockerfile.vim
@@ -10,7 +10,7 @@ endif
syntax case ignore
syntax match dockerfileKeyword /\v^\s*(FROM|MAINTAINER|RUN|CMD|EXPOSE|ENV|ADD)\s/
-syntax match dockerfileKeyword /\v^\s*(ENTRYPOINT|VOLUME|USER|WORKDIR)\s/
+syntax match dockerfileKeyword /\v^\s*(ENTRYPOINT|VOLUME|USER|WORKDIR|COPY)\s/
highlight link dockerfileKeyword Keyword
syntax region dockerfileString start=/\v"/ skip=/\v\\./ end=/\v"/