annotate runtime/ftplugin/nroff.vim @ 28332:609c7fb65969

Added tag v8.2.4691 for changeset 3e707d35d05dde874cbcc36bf82df98ab6479d95
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Apr 2022 23:15:03 +0200
parents 29c5f168c6fd
children 7c7432a53a6c
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<'