annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: roff(7)
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
3 " Maintainer: Aman Verma
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
4 " Homepage: https://github.com/a-vrma/vim-nroff-ftplugin
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
5 " Previous Maintainer: Chris Spiegel <cspiegel@gmail.com>
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
6 " Last Change: 2020 Nov 21
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 if exists("b:did_ftplugin")
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 finish
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 endif
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 let b:did_ftplugin = 1
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 setlocal commentstring=.\\\"%s
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
14 setlocal comments=:.\\\"
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
15 setlocal sections+=Sh
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
16
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
17 let b:undo_ftplugin = 'setlocal commentstring< comments< sections<'