diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2017-03-23 11:30:58 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2017-03-23 11:30:58 +0100 |
commit | ba758909360bbd037cea06fd4e4eec8da7bf8751 (patch) | |
tree | ceee72885ce452b70b36cc4f98002cc38988d958 /ftdetect | |
parent | 0801eac01aab5940fc1e4409ba749383cc353bc2 (diff) | |
download | vim-polyglot-ba758909360bbd037cea06fd4e4eec8da7bf8751.tar.gz vim-polyglot-ba758909360bbd037cea06fd4e4eec8da7bf8751.zip |
Update Dockerfile provider to offical, closes #191
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index edf87bb7..57255ac5 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -137,7 +137,7 @@ endif " ftdetect/dockerfile.vim if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'dockerfile') == -1 -au BufNewFile,BufRead Dockerfile set filetype=dockerfile +au BufNewFile,BufRead [Dd]ockerfile,Dockerfile.* set filetype=dockerfile endif |