nroff.vim 424 B

123456789101112131415161718
  1. " Vim filetype plugin
  2. " Language: roff(7)
  3. " Maintainer: Aman Verma
  4. " Homepage: https://github.com/a-vrma/vim-nroff-ftplugin
  5. " Previous Maintainer: Chris Spiegel <cspiegel@gmail.com>
  6. " Last Change: 2020 Nov 21
  7. if exists("b:did_ftplugin")
  8. finish
  9. endif
  10. let b:did_ftplugin = 1
  11. setlocal commentstring=.\\\"%s
  12. setlocal comments=:.\\\"
  13. setlocal sections+=Sh
  14. let b:undo_ftplugin = 'setlocal commentstring< comments< sections<'