Dockerfile.vim
Dockerfile.vim copied to clipboard
Vim syntax file & snippets for Docker's Dockerfile
ubuntu 18.04,installed vim plug,and below is my .vimrc file configuration: syntax enable colorscheme molokai call plug#begin('~/.vim/plugged') "install vim-plug on your vimrc Plug 'ekalinin/Dockerfile.vim' call plug#end()
Vim itself uses `filetype=dockerfile`, whereas `Dockerfile` is used here. Is there a specific reason for this? I think it should/could use the default filetype here also. (Via https://github.com/neomake/neomake/issues/2498)
beautiful syntax can you add Rockerfile support?
I'm facing an issue in which file type detection fails when opening files named `Dockerfile`:  (note: file type is dockerfile instead of Dockerfile) I'm not using any plugins that...
Before:  After: 
Keywords (such as `FROM` and `RUN`) should always be flush left. I would expect that given this `Dockerfile`: ``` dockerfile FROM ubuntu RUN echo hi ``` That indenting it should...
 "#" not by lead by space, it isn't a comment
In #32, the issuer complains about the shell words being highlighted in situations that aren't intended. I've experienced this too and believe command highlighting could use improvement. For example, the...
I use the syntaxhighlighting under RHEL7, and it wasn't usable. Under Ubuntu it is perfect. Please change two things. 1. Rename the files to dockerfile.vim 2. change the ftdetect/Dockerfile vim...