annotate runtime/ftplugin/pascal.vim @ 1348:17a83c0532e8
v7.1.062
updated for version 7.1-062
author |
vimboss |
date |
Sat, 11 Aug 2007 12:32:57 +0000 |
parents |
a1059cda45f2 |
children |
7bc41231fbc7 |
rev |
line source |
7
|
1 " Vim filetype plugin file
|
|
2 " Language: pascal
|
|
3 " Maintainer: Dan Sharp <dwsharp at hotmail dot com>
|
507
|
4 " Last Changed: 2005 Sep 05
|
7
|
5 " URL: http://mywebpage.netscape.com/sharppeople/vim/ftplugin
|
|
6
|
|
7 if exists("b:did_ftplugin") | finish | endif
|
|
8 let b:did_ftplugin = 1
|
|
9
|
|
10 if exists("loaded_matchit")
|
507
|
11 let b:match_words='\<\%(begin\|case\|try\)\>:\<end\>'
|
7
|
12 endif
|
|
13
|
|
14 " Undo the stuff we changed.
|
|
15 let b:undo_ftplugin = "unlet! b:match_words"
|