neovim

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

autopkgtest.vim (468B)


      1 " Vim filetype plugin file
      2 " Language:     Debian autopkgtest control files
      3 " Maintainer:   Debian Vim Maintainers
      4 " Last Change:  2025 Jul 05
      5 " URL:          https://salsa.debian.org/vim-team/vim-debian/blob/main/ftplugin/autopkgtest.vim
      6 
      7 " Do these settings once per buffer
      8 if exists('b:did_ftplugin')
      9  finish
     10 endif
     11 let b:did_ftplugin=1
     12 
     13 setlocal comments=:#
     14 setlocal commentstring=#\ %s
     15 
     16 " Clean unloading
     17 let b:undo_ftplugin = 'setlocal comments< commentstring<'