1" Vim filetype plugin file 2" Language: InstallShield (ft=ishd) 3" Maintainer: Johannes Zellner <[email protected]> 4" Last Change: Sat, 24 May 2003 11:55:36 CEST 5 6if exists("b:did_ftplugin") | finish | endif 7let b:did_ftplugin = 1 8 9setlocal foldmethod=syntax 10 11" Using line continuation here. 12let s:cpo_save = &cpo 13set cpo-=C 14 15" matchit support 16if exists("loaded_matchit") 17 let b:match_ignorecase=0 18 let b:match_words= 19 \ '\%(^\s*\)\@<=\<function\>\s\+[^()]\+\s*(:\%(^\s*\)\@<=\<begin\>\s*$:\%(^\s*\)\@<=\<return\>:\%(^\s*\)\@<=\<end\>\s*;\s*$,' . 20 \ '\%(^\s*\)\@<=\<repeat\>\s*$:\%(^\s*\)\@<=\<until\>\s\+.\{-}\s*;\s*$,' . 21 \ '\%(^\s*\)\@<=\<switch\>\s*(.\{-}):\%(^\s*\)\@<=\<\%(case\|default\)\>:\%(^\s*\)\@<=\<endswitch\>\s*;\s*$,' . 22 \ '\%(^\s*\)\@<=\<while\>\s*(.\{-}):\%(^\s*\)\@<=\<endwhile\>\s*;\s*$,' . 23 \ '\%(^\s*\)\@<=\<for\>.\{-}\<\%(to\|downto\)\>:\%(^\s*\)\@<=\<endfor\>\s*;\s*$,' . 24 \ '\%(^\s*\)\@<=\<if\>\s*(.\{-})\s*then:\%(^\s*\)\@<=\<else\s*if\>\s*([^)]*)\s*then:\%(^\s*\)\@<=\<else\>:\%(^\s*\)\@<=\<endif\>\s*;\s*$' 25endif 26 27if has("gui_win32") && !exists("b:browsefilter") 28 let b:browsefilter = "InstallShield Files (*.rul)\t*.rul\n" . 29 \ "All Files (*.*)\t*.*\n" 30endif 31 32let &cpo = s:cpo_save 33unlet s:cpo_save 34