annotate runtime/ftplugin/nroff.vim @ 31972:4e59c4260d84 v9.0.1318

patch 9.0.1318: code style test fails Commit: https://github.com/vim/vim/commit/f2017f255ddceaad88a951adc6a2c190d3a18ebf Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 17 21:29:57 2023 +0000 patch 9.0.1318: code style test fails Problem: Code style test fails. Solution: Remove trailing white space.
author Bram Moolenaar <Bram@vim.org>
date Fri, 17 Feb 2023 22:45:03 +0100
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<'