diff options
author | Christian Clason <c.clason@uni-graz.at> | 2021-12-27 11:42:47 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2021-12-27 12:52:17 +0100 |
commit | d54329e1b66e3c8df0877a06df4a66c6211fae07 (patch) | |
tree | 8571ab4ffaee47abc9a1c5f85a0a9b146462cf97 /runtime/filetype.vim | |
parent | 5743b0345c3d5ccc2a7dd63b47e7ccf9fd517018 (diff) | |
download | rneovim-d54329e1b66e3c8df0877a06df4a66c6211fae07.tar.gz rneovim-d54329e1b66e3c8df0877a06df4a66c6211fae07.tar.bz2 rneovim-d54329e1b66e3c8df0877a06df4a66c6211fae07.zip |
vim-patch:8.2.3909: Containerfile using prefix name not recognized
Problem: Containerfile using prefix name not recognized.
Solution: Recognize Containerfile.*.
https://github.com/vim/vim/commit/bbdd3fb804bf69684f7b0f49d3c0a0b039daec02
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r-- | runtime/filetype.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 8071002566..42f1ee219b 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -2239,7 +2239,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') |