Files
org-vim/runtime/ftplugin/dockerfile.vim
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
387 B
VimL
Raw Normal View History

2014-08-29 15:12:19 +02:00
" Vim filetype plugin
" Language: Dockerfile
" Maintainer: Honza Pokorny <http://honza.ca>
" Last Change: 2025 Feb 21
2014-08-29 15:12:19 +02:00
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
finish
endif
" Don't load another plugin for this buffer
let b:did_ftplugin = 1
setlocal comments=:#
2014-08-29 15:12:19 +02:00
setlocal commentstring=#\ %s
let b:undo_ftplugin = "setl comments< commentstring<"