Mercurial > hg > RemoteEditor > vim7
annotate runtime/ftplugin/pascal.vim @ 40:01573c245f15
fix for remote editor
author | one@zeus.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Sat, 18 Dec 2010 18:47:04 +0900 |
parents | c16898406ff2 |
children | 67300faee616 |
rev | line source |
---|---|
0 | 1 " Vim filetype plugin file |
2 " Language: pascal | |
39 | 3 " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net> |
4 " Last Changed: 20 Jan 2009 | |
5 " URL: http://dwsharp.users.sourceforge.net/vim/ftplugin | |
0 | 6 |
7 if exists("b:did_ftplugin") | finish | endif | |
8 let b:did_ftplugin = 1 | |
9 | |
10 if exists("loaded_matchit") | |
11 let b:match_words='\<\%(begin\|case\|try\)\>:\<end\>' | |
12 endif | |
13 | |
14 " Undo the stuff we changed. | |
15 let b:undo_ftplugin = "unlet! b:match_words" |