comparison runtime/ftplugin/mrxvtrc.vim @ 1122:2ad54fcf37e3

updated for version 7.1a
author vimboss
date Sat, 05 May 2007 17:56:55 +0000
parents db44f7b81373
children
comparison
equal deleted inserted replaced
1121:e63691e7c504 1122:2ad54fcf37e3
1 " Created : Wed 26 Apr 2006 01:20:53 AM CDT 1 " Created : Wed 26 Apr 2006 01:20:53 AM CDT
2 " Modified : Thu 27 Apr 2006 03:29:13 AM CDT 2 " Modified : Fri 28 Apr 2006 03:24:01 AM CDT
3 " Author : Gautam Iyer <gi1242@users.sourceforge.net> 3 " Author : Gautam Iyer <gi1242@users.sourceforge.net>
4 " Description : ftplugin for mrxvtrc 4 " Description : ftplugin for mrxvtrc
5 5
6 if exists("b:did_ftplugin") 6 if exists("b:did_ftplugin")
7 finish 7 finish
8 endif 8 endif
9 let b:did_ftplugin = 1 9 let b:did_ftplugin = 1
10 10
11 let b:undo_ftplugin = "setl com< cms< fo<" 11 let b:undo_ftplugin = "setl com< cms< fo<"
12 12
13 setlocal comments=:! commentstring=!\ %s formatoptions-=t formatoptions+=croql 13 " Really any line that does not match an option is a comment. But use '!' for
14 " compatibility with x-defaults files, and "#" (preferred) for compatibility
15 " with all other config files.
16 "
17 " Comments beginning with "#" are preferred because Vim will not flag the
18 " first word as a spelling error if it is not capitalised. The '!' used as
19 " comment leaders makes Vim think that every comment line is a new sentence.
14 20
21 setlocal comments=:!,:# commentstring=#\ %s
22 setlocal formatoptions-=t formatoptions+=croql