xref: /vim-8.2.3635/runtime/ftplugin/nroff.vim (revision 8ea05de6)
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 <[email protected]>
6" Last Change:	2020 Nov 21
7
8if exists("b:did_ftplugin")
9  finish
10endif
11let b:did_ftplugin = 1
12
13setlocal commentstring=.\\\"%s
14setlocal comments=:.\\\"
15setlocal sections+=Sh
16
17let b:undo_ftplugin = 'setlocal commentstring< comments< sections<'
18