1" Vim filetype plugin file
2" Language:	matlab
3" Maintainer:	Jake Wasserman <jwasserman at gmail dot com>
4" Last Changed: 2006 Jan 12
5
6if exists("b:did_ftplugin")
7	finish
8endif
9let b:did_ftplugin = 1
10
11let s:save_cpo = &cpo
12set cpo-=C
13
14if exists("loaded_matchit")
15	let s:conditionalEnd = '\(([^()]*\)\@!\<end\>\([^()]*)\)\@!'
16	let b:match_words = '\<if\>\|\<while\>\|\<for\>\|\<switch\>:' .
17		\ s:conditionalEnd . ',\<if\>:\<elseif\>:\<else\>:' .
18		\ s:conditionalEnd
19endif
20
21setlocal suffixesadd=.m
22setlocal suffixes+=.asv
23
24let b:undo_ftplugin = "setlocal suffixesadd< suffixes< "
25	\ . "| unlet! b:match_words"
26
27let &cpo = s:save_cpo
28
29
30
31