1" Vim filetype plugin file 2" Language: pascal 3" Maintainer: Dan Sharp <dwsharp at hotmail dot com> 4" Last Changed: 2003 Sep 29 5" URL: http://mywebpage.netscape.com/sharppeople/vim/ftplugin 6 7if exists("b:did_ftplugin") | finish | endif 8let b:did_ftplugin = 1 9 10if exists("loaded_matchit") 11 let b:match_words='\<begin\>:\<end\>' 12endif 13 14" Undo the stuff we changed. 15let b:undo_ftplugin = "unlet! b:match_words" 16