mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ea59ce60c5
By setting the commentstring, you support commenting with plugins like tComment. Now Vim won't default to incorrect `/* */` comments.
24 lines
644 B
VimL
24 lines
644 B
VimL
" dockerfile.vim - Syntax highlighting for Dockerfiles
|
|
" Maintainer: Honza Pokorny <http://honza.ca>
|
|
" Version: 0.5
|
|
|
|
|
|
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
let b:current_syntax = "dockerfile"
|
|
|
|
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/
|
|
highlight link dockerfileKeyword Keyword
|
|
|
|
syntax region dockerfileString start=/\v"/ skip=/\v\\./ end=/\v"/
|
|
highlight link dockerfileString String
|
|
|
|
syntax match dockerfileComment "\v^\s*#.*$"
|
|
highlight link dockerfileComment Comment
|
|
|
|
set commentstring=#\ %s
|