annotate runtime/ftplugin/nroff.vim @ 30837:82c3677f8af1 v9.0.0753

patch 9.0.0753: some Ex commands are not in the help index Commit: https://github.com/vim/vim/commit/b77bdce120d7e140d0d0bd535ec9febdef78993d Author: Yee Cheng Chin <ychin.git@gmail.com> Date: Sat Oct 15 10:22:19 2022 +0100 patch 9.0.0753: some Ex commands are not in the help index Problem: Some Ex commands are not in the help index. Solution: Add the missing commands. Add a script to check all Ex commands are in the help index. (Yee Cheng Chin, closes #11371)
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Oct 2022 11:30:07 +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<'