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

updated for version 7.0007
author vimboss
date Sat, 10 Jul 2004 09:47:34 +0000
parents 3fc0f57ecb91
children a7ae7e043e43
comparison
equal deleted inserted replaced
14:946da5994c01 15:631143ac4a01
1 " Vim filetype plugin file 1 " Vim filetype plugin file
2 " Language: html 2 " Language: html
3 " Maintainer: Dan Sharp <dwsharp at hotmail dot com> 3 " Maintainer: Dan Sharp <dwsharp at hotmail dot com>
4 " Last Changed: 2004 May 11 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 let b:did_ftplugin = 1 8 let b:did_ftplugin = 1
9 9
24 \ '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>' 24 \ '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>'
25 endif 25 endif
26 26
27 " Change the :browse e filter to primarily show HTML-related files. 27 " Change the :browse e filter to primarily show HTML-related files.
28 if has("gui_win32") 28 if has("gui_win32")
29 let b:browsefilter="HTML Files (*.html,*.htm)\t*.htm*\n" . 29 let b:browsefilter="HTML Files (*.html,*.htm)\t*.htm;*.html\n" .
30 \ "JavaScript Files (*.js)\t*.js\n" . 30 \ "JavaScript Files (*.js)\t*.js\n" .
31 \ "Cascading StyleSheets (*.css)\t*.css\n" . 31 \ "Cascading StyleSheets (*.css)\t*.css\n" .
32 \ "All Files (*.*)\t*.*\n" 32 \ "All Files (*.*)\t*.*\n"
33 endif 33 endif
34 34