nroff.vim 468 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. " 2024 May 24 by Riley Bruins <ribru17@gmail.com> ('commentstring')
  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<'