2014-07-10 21:05:51 -07:00
|
|
|
" Vim filetype plugin file
|
|
|
|
" Language: matlab
|
|
|
|
" Maintainer: Jake Wasserman <jwasserman at gmail dot com>
|
2021-04-22 20:08:48 -07:00
|
|
|
" Last Change: 2019 Sep 27
|
2015-10-09 14:42:05 -07:00
|
|
|
|
|
|
|
" Contributors:
|
|
|
|
" Charles Campbell
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo-=C
|
|
|
|
|
|
|
|
if exists("loaded_matchit")
|
2015-10-09 14:42:05 -07:00
|
|
|
let s:conditionalEnd = '\%(([^()]*\)\@!\<end\>\%([^()]*)\)\@!'
|
|
|
|
let b:match_words=
|
|
|
|
\ '\<\%(if\|switch\|for\|while\)\>:\<\%(elseif\|case\|break\|continue\|else\|otherwise\)\>:'.s:conditionalEnd.','.
|
|
|
|
\ '\<function\>:\<return\>:\<endfunction\>'
|
|
|
|
unlet s:conditionalEnd
|
2014-07-10 21:05:51 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
setlocal suffixesadd=.m
|
|
|
|
setlocal suffixes+=.asv
|
2021-04-22 20:08:48 -07:00
|
|
|
setlocal commentstring=%\ %s
|
2014-07-10 21:05:51 -07:00
|
|
|
|
2021-04-22 20:08:48 -07:00
|
|
|
let b:undo_ftplugin = "setlocal suffixesadd< suffixes< commentstring< "
|
2014-07-10 21:05:51 -07:00
|
|
|
\ . "| unlet! b:match_words"
|
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|