I use the vim plugins Syntastic and Dockerfile.vim.
Syntastic has some checkers now for (lower-case) dockerfile
file types, which is a built-in filetype for vim, but with only rudimentary syntax support. The better support with the Dockerfile.vim plugin sets a file type of (upper-cased) Dockerfile
, which isn't detected by Syntastic.
I can locally tweak the Syntastic installation to copy the dockerfile
checker directory to Dockerfile
, and make a few associated case changes in the checker, but that seems clumsy.
Maybe there's a way to mess with my filetype detection so I simultaneously get the benefit of both plugins? Maybe Dockerfile.vim
should be building on/replacing the dockerfile
filetype, and not adding a new Dockerfile
?
Any suggestions?