mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			715 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			715 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
" dockerfile.vim - Syntax highlighting for Dockerfiles
 | 
						|
" Maintainer:   Honza Pokorny <https://honza.ca>
 | 
						|
" Version:      0.6
 | 
						|
" Last Change:  2019 Aug 16
 | 
						|
" License:      BSD
 | 
						|
 | 
						|
 | 
						|
if exists("b:current_syntax")
 | 
						|
    finish
 | 
						|
endif
 | 
						|
 | 
						|
let b:current_syntax = "dockerfile"
 | 
						|
 | 
						|
syntax case ignore
 | 
						|
 | 
						|
syntax match dockerfileKeyword /\v^\s*(ONBUILD\s+)?(ADD|ARG|CMD|COPY|ENTRYPOINT|ENV|EXPOSE|FROM|HEALTHCHECK|LABEL|MAINTAINER|RUN|SHELL|STOPSIGNAL|USER|VOLUME|WORKDIR)\s/
 | 
						|
 | 
						|
syntax match dockerfileKeyword /\v(AS)/
 | 
						|
 | 
						|
syntax region dockerfileString start=/\v"/ skip=/\v\\./ end=/\v"/
 | 
						|
 | 
						|
syntax match dockerfileComment "\v^\s*#.*$"
 | 
						|
 | 
						|
hi def link dockerfileString String
 | 
						|
hi def link dockerfileKeyword Keyword
 | 
						|
hi def link dockerfileComment Comment
 |