annotate runtime/ftplugin/help.vim @ 2382:3a5ededa240a vim73

Add the 'c' flag to 'concealcursor'.
author Bram Moolenaar <bram@vim.org>
date Sat, 24 Jul 2010 15:00:38 +0200
parents 85b7dc8da5eb
children f2de38a019a2
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
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
2 " Language: Vim help file
839
1f3b1021f002 updated for version 7.0e05
vimboss
parents: 375
diff changeset
3 " Maintainer: Nikolai Weibull <now@bitwi.se>
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1125
diff changeset
4 " Latest Revision: 2008-07-09
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
2378
85b7dc8da5eb Add the 'concealcursor' option to decide when the cursor line is to be
Bram Moolenaar <bram@vim.org>
parents: 2321
diff changeset
14 let b:undo_ftplugin = "setl fo< tw< cole< cocu<"
375
f14cbd913415 updated for version 7.0097
vimboss
parents:
diff changeset
15
2382
3a5ededa240a Add the 'c' flag to 'concealcursor'.
Bram Moolenaar <bram@vim.org>
parents: 2378
diff changeset
16 setlocal formatoptions+=tcroql textwidth=78 cole=2 cocu=nc
1698
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1125
diff changeset
17
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1125
diff changeset
18 let &cpo = s:cpo_save
f4f8014d516e updated for version 7.2c-000
vimboss
parents: 1125
diff changeset
19 unlet s:cpo_save