comparison runtime/ftplugin/php.vim @ 15:631143ac4a01 v7.0007

updated for version 7.0007
author vimboss
date Sat, 10 Jul 2004 09:47:34 +0000
parents 3fc0f57ecb91
children a1059cda45f2
comparison
equal deleted inserted replaced
14:946da5994c01 15:631143ac4a01
1 " Vim filetype plugin file 1 " Vim filetype plugin file
2 " Language: php 2 " Language: php
3 " Maintainer: Dan Sharp <dwsharp at hotmail dot com> 3 " Maintainer: Dan Sharp <dwsharp at hotmail dot com>
4 " Last Changed: 2003 Sep 29 4 " Last Changed: 2004 Jul 08
5 " URL: http://mywebpage.netscape.com/sharppeople/vim/ftplugin 5 " URL: http://mywebpage.netscape.com/sharppeople/vim/ftplugin
6 6
7 if exists("b:did_ftplugin") | finish | endif 7 if exists("b:did_ftplugin") | finish | endif
8 8
9 " Make sure the continuation lines below do not cause problems in 9 " Make sure the continuation lines below do not cause problems in
11 let s:save_cpo = &cpo 11 let s:save_cpo = &cpo
12 set cpo-=C 12 set cpo-=C
13 13
14 " Define some defaults in case the included ftplugins don't set them. 14 " Define some defaults in case the included ftplugins don't set them.
15 let s:undo_ftplugin = "" 15 let s:undo_ftplugin = ""
16 let s:browsefilter = "HTML Files (*.html, *.htm)\t*.htm*\n" . 16 let s:browsefilter = "HTML Files (*.html, *.htm)\t*.html;*.htm\n" .
17 \ "All Files (*.*)\t*.*\n" 17 \ "All Files (*.*)\t*.*\n"
18 let s:match_words = "" 18 let s:match_words = ""
19 19
20 runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim 20 runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim
21 let b:did_ftplugin = 1 21 let b:did_ftplugin = 1