1 " Vim filetype plugin file
3 " Maintainer: Dan Sharp <dwsharp at hotmail dot com>
4 " Last Changed: 2003 Sep 29
5 " URL: http://mywebpage.netscape.com/sharppeople/vim/ftplugin
7 if exists("b:did_ftplugin") | finish | endif
10 " Make sure the continuation lines below do not cause problems in
15 setlocal commentstring=#%s
17 " Shell: thanks to Johannes Zellner
18 if exists("loaded_matchit")
19 let s:sol = '\%(;\s*\|^\s*\)\@<=' " start of line
21 \ s:sol.'if\>:' . s:sol.'elif\>:' . s:sol.'else\>:' . s:sol. 'fi\>,' .
22 \ s:sol.'\%(for\|while\)\>:' . s:sol. 'done\>,' .
23 \ s:sol.'case\>:' . s:sol. 'esac\>'
26 " Change the :browse e filter to primarily show shell-related files.
28 let b:browsefilter="Bourne Shell Scripts (*.sh)\t*.sh\n" .
29 \ "Korn Shell Scripts (*.ksh)\t*.ksh\n" .
30 \ "Bash Shell Scripts (*.bash)\t*.bash\n" .
31 \ "All Files (*.*)\t*.*\n"
34 " Undo the stuff we changed.
35 let b:undo_ftplugin = "setlocal cms< | unlet! b:browsefilter b:match_words"
37 " Restore the saved compatibility options.