1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-21 17:25:11 +01:00
vim/runtime/ftplugin/nroff.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
468 B
VimL
Raw Normal View History

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
" 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
setlocal commentstring=.\\\"\ %s
2020-11-29 14:36:24 +01:00
setlocal comments=:.\\\"
setlocal sections+=Sh
let b:undo_ftplugin = 'setlocal commentstring< comments< sections<'