summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-27 10:35:52 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-27 10:35:52 +0000
commitbbdd3fb804bf69684f7b0f49d3c0a0b039daec02 (patch)
tree4c90b47b88451c2838800b3f53f45c2417f94acc /runtime
parent27708e6c7b6f444fd599f3dc5015336b002b874d (diff)
patch 8.2.3909: Containerfile using prefix name not recognizedv8.2.3909
Problem: Containerfile using prefix name not recognized. Solution: Recognize Containerfile.*.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/filetype.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 9f8dbded78..b9459f35fa 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -2240,7 +2240,7 @@ au BufNewFile,BufRead crontab,crontab.*,*/etc/cron.d/* call s:StarSetf('crontab
au BufNewFile,BufRead */etc/dnsmasq.d/* call s:StarSetf('dnsmasq')
" Dockerfile
-au BufNewFile,BufRead Dockerfile.* call s:StarSetf('dockerfile')
+au BufNewFile,BufRead Dockerfile.*,Containerfile.* call s:StarSetf('dockerfile')
" Dracula
au BufNewFile,BufRead drac.* call s:StarSetf('dracula')