2019-05-09 19:16:22 +02:00
|
|
|
" Vim filetype plugin
|
|
|
|
" Language: roff(7)
|
2020-11-29 14:36:24 +01:00
|
|
|
" Maintainer: Aman Verma
|
|
|
|
" Homepage: https://github.com/a-vrma/vim-nroff-ftplugin
|
2024-06-03 20:40:45 +02:00
|
|
|
" Previous Maintainer: Chris Spiegel <cspiegel@gmail.com>
|
|
|
|
" 2024 May 24 by Riley Bruins <ribru17@gmail.com> ('commentstring')
|
2019-05-09 19:16:22 +02:00
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
2024-06-03 20:40:45 +02:00
|
|
|
setlocal commentstring=.\\\"\ %s
|
2020-11-29 14:36:24 +01:00
|
|
|
setlocal comments=:.\\\"
|
|
|
|
setlocal sections+=Sh
|
|
|
|
|
|
|
|
let b:undo_ftplugin = 'setlocal commentstring< comments< sections<'
|