Merged from the latest developing branch.
[MacVim.git] / runtime / ftplugin / pascal.vim
blobc138dda9cada4404c4d94f1c8627e897fc84e1a8
1 " Vim filetype plugin file
2 " Language:     pascal
3 " Maintainer:   Dan Sharp <dwsharp at hotmail dot com>
4 " Last Changed: 2005 Sep 05
5 " URL:          http://mywebpage.netscape.com/sharppeople/vim/ftplugin
7 if exists("b:did_ftplugin") | finish | endif
8 let b:did_ftplugin = 1
10 if exists("loaded_matchit")
11     let b:match_words='\<\%(begin\|case\|try\)\>:\<end\>'
12 endif
14 " Undo the stuff we changed.
15 let b:undo_ftplugin = "unlet! b:match_words"