blob: 6979bb8f843eab8a60e7d6db16c5fd7e80822ee8 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim filetype plugin file
Doug Kearns93197fd2024-01-14 20:59:02 +01002" Language: aspvbs
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003"
4" This runtime file is looking for a new maintainer.
5"
6" Former maintainer: Dan Sharp
Doug Kearns93197fd2024-01-14 20:59:02 +01007" Last Change: 2009 Jan 20
8" 2024 Jan 14 by Vim Project (browsefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009
10if exists("b:did_ftplugin") | finish | endif
11
12" Make sure the continuation lines below do not cause problems in
13" compatibility mode.
14let s:save_cpo = &cpo
15set cpo-=C
16
17" Define some defaults in case the included ftplugins don't set them.
18let s:undo_ftplugin = ""
Doug Kearns93197fd2024-01-14 20:59:02 +010019let s:browsefilter = "HTML Files (*.html, *.htm)\t*.htm*\n"
20if has("win32")
21 let s:browsefilter .= "All Files (*.*)\t*\n"
22else
23 let s:browsefilter .= "All Files (*)\t*\n"
24endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000025let s:match_words = ""
26
27runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim
28let b:did_ftplugin = 1
29
30" Override our defaults if these were set by an included ftplugin.
31if exists("b:undo_ftplugin")
32 let s:undo_ftplugin = b:undo_ftplugin
33endif
34if exists("b:browsefilter")
35 let s:browsefilter = b:browsefilter
36endif
37if exists("b:match_words")
38 let s:match_words = b:match_words
39endif
40
41" ASP: Active Server Pages (with Visual Basic Script)
42" thanks to Gontran BAERTS
43if exists("loaded_matchit")
44 let s:notend = '\%(\<end\s\+\)\@<!'
Bram Moolenaar843ee412004-06-30 16:16:41 +000045 let b:match_ignorecase = 1
Bram Moolenaar071d4272004-06-13 20:20:40 +000046 let b:match_words =
Bram Moolenaar843ee412004-06-30 16:16:41 +000047 \ s:notend . '\<if\>\%(.\{-}then\s\+\w\)\@!:\<elseif\>:^\s*\<else\>:\<end\s\+\<if\>,' .
48 \ s:notend . '\<select\s\+case\>:\<case\>:\<case\s\+else\>:\<end\s\+select\>,' .
49 \ '^\s*\<sub\>:\<end\s\+sub\>,' .
50 \ '^\s*\<function\>:\<end\s\+function\>,' .
51 \ '\<class\>:\<end\s\+class\>,' .
52 \ '^\s*\<do\>:\<loop\>,' .
53 \ '^\s*\<for\>:\<next\>,' .
54 \ '\<while\>:\<wend\>,' .
Bram Moolenaar071d4272004-06-13 20:20:40 +000055 \ s:match_words
56endif
57
58" Change the :browse e filter to primarily show ASP-related files.
Doug Kearns93197fd2024-01-14 20:59:02 +010059if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
Bram Moolenaar071d4272004-06-13 20:20:40 +000060 let b:browsefilter="ASP Files (*.asp)\t*.asp\n" . s:browsefilter
61endif
62
Bram Moolenaar843ee412004-06-30 16:16:41 +000063let b:undo_ftplugin = "unlet! b:match_words b:match_ignorecase b:browsefilter | " . s:undo_ftplugin
Bram Moolenaar071d4272004-06-13 20:20:40 +000064
65" Restore the saved compatibility options.
66let &cpo = s:save_cpo
Bram Moolenaar84f72352012-03-11 15:57:40 +010067unlet s:save_cpo