comparison runtime/ftplugin/nroff.vim @ 23047:29c5f168c6fd

Update runtime files Commit: https://github.com/vim/vim/commit/23515b4ef7580af8b9d3b964a558ab2007cacda5 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 29 14:36:24 2020 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 29 Nov 2020 14:45:04 +0100
parents 1eaf34420bb3
children
comparison
equal deleted inserted replaced
23046:9a30b28b8154 23047:29c5f168c6fd
1 " Vim filetype plugin 1 " Vim filetype plugin
2 " Language: roff(7) 2 " Language: roff(7)
3 " Maintainer: Chris Spiegel <cspiegel@gmail.com> 3 " Maintainer: Aman Verma
4 " Last Change: 2019 Apr 24 4 " Homepage: https://github.com/a-vrma/vim-nroff-ftplugin
5 " Previous Maintainer: Chris Spiegel <cspiegel@gmail.com>
6 " Last Change: 2020 Nov 21
5 7
6 if exists("b:did_ftplugin") 8 if exists("b:did_ftplugin")
7 finish 9 finish
8 endif 10 endif
9 let b:did_ftplugin = 1 11 let b:did_ftplugin = 1
10 12
11 setlocal commentstring=.\\\"%s 13 setlocal commentstring=.\\\"%s
14 setlocal comments=:.\\\"
15 setlocal sections+=Sh
16
17 let b:undo_ftplugin = 'setlocal commentstring< comments< sections<'