0
0
mirror of https://github.com/vim/vim.git synced 2025-07-24 10:45:12 -04:00
vim/runtime/ftplugin/nroff.vim

18 lines
424 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>
" Last Change: 2020 Nov 21
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<'