2019-08-01 14:21:22 -07:00
|
|
|
" Vim filetype plugin
|
|
|
|
" Language: roff(7)
|
2021-05-01 16:15:16 -07:00
|
|
|
" Maintainer: Aman Verma
|
|
|
|
" Homepage: https://github.com/a-vrma/vim-nroff-ftplugin
|
2024-06-04 00:39:28 -07:00
|
|
|
" Previous Maintainer: Chris Spiegel <cspiegel@gmail.com>
|
|
|
|
" 2024 May 24 by Riley Bruins <ribru17@gmail.com> ('commentstring')
|
2019-08-01 14:21:22 -07:00
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
2024-06-04 00:39:28 -07:00
|
|
|
setlocal commentstring=.\\\"\ %s
|
2021-05-01 16:15:16 -07:00
|
|
|
setlocal comments=:.\\\"
|
|
|
|
setlocal sections+=Sh
|
|
|
|
|
|
|
|
let b:undo_ftplugin = 'setlocal commentstring< comments< sections<'
|