annotate runtime/ftplugin/help.vim @ 20970:736d6e6f55f6 v8.2.1036

patch 8.2.1036: popupwin test fails sometimes Commit: https://github.com/vim/vim/commit/373c65104e0991724cb57910dfb3e5c276e2d7e7 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 22 19:24:23 2020 +0200 patch 8.2.1036: popupwin test fails sometimes Problem: Popupwin test fails sometimes. Solution: Use WaitForAssert() instead of a sleep.
author Bram Moolenaar <Bram@vim.org>
date Mon, 22 Jun 2020 19:30:04 +0200
parents 9d3d7b0f4861
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
375
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
1 " Vim filetype plugin file
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 2965
diff changeset
2 " Language: Vim help file
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents: 2965
diff changeset
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
15334
9d3d7b0f4861 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
4 " Latest Revision: 2018-12-29
375
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
5
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
6 if exists("b:did_ftplugin")
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
7 finish
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
8 endif
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
9 let b:did_ftplugin = 1
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
10
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1125
diff changeset
11 let s:cpo_save = &cpo
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1125
diff changeset
12 set cpo&vim
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1125
diff changeset
13
15334
9d3d7b0f4861 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
14 let b:undo_ftplugin = "setl fo< tw< cole< cocu< keywordprg<"
375
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
15
15334
9d3d7b0f4861 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 11062
diff changeset
16 setlocal formatoptions+=tcroql textwidth=78 keywordprg=:help
2965
f2de38a019a2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2382
diff changeset
17 if has("conceal")
f2de38a019a2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2382
diff changeset
18 setlocal cole=2 cocu=nc
f2de38a019a2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2382
diff changeset
19 endif
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1125
diff changeset
20
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1125
diff changeset
21 let &cpo = s:cpo_save
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1125
diff changeset
22 unlet s:cpo_save