blob: f9268fe89b5fc5cafe3bf89ce6d5088c4e33d2f1 [file] [log] [blame]
Bram Moolenaar34401cc2014-08-29 15:12:19 +02001" Vim filetype plugin
2" Language: Dockerfile
3" Maintainer: Honza Pokorny <http://honza.ca>
David Mandelberg61af5872025-02-22 15:09:03 +01004" Last Change: 2025 Feb 21
Bram Moolenaar34401cc2014-08-29 15:12:19 +02005
6" Only do this when not done yet for this buffer
7if exists("b:did_ftplugin")
8 finish
9endif
10
11" Don't load another plugin for this buffer
12let b:did_ftplugin = 1
13
David Mandelberg61af5872025-02-22 15:09:03 +010014setlocal comments=:#
Bram Moolenaar34401cc2014-08-29 15:12:19 +020015setlocal commentstring=#\ %s
Christian Brabandt70881ba2024-12-20 19:53:55 +010016
David Mandelberg61af5872025-02-22 15:09:03 +010017let b:undo_ftplugin = "setl comments< commentstring<"