neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

dockerfile.vim (387B)


      1 " Vim filetype plugin
      2 " Language:	Dockerfile
      3 " Maintainer:   Honza Pokorny <http://honza.ca>
      4 " Last Change:	2025 Feb 21
      5 
      6 " Only do this when not done yet for this buffer
      7 if exists("b:did_ftplugin")
      8  finish
      9 endif
     10 
     11 " Don't load another plugin for this buffer
     12 let b:did_ftplugin = 1
     13 
     14 setlocal comments=:#
     15 setlocal commentstring=#\ %s
     16 
     17 let b:undo_ftplugin = "setl comments< commentstring<"