" Vim filetype plugin file " Language: matlab " Maintainer: Fabrice Guy " Last Changed: 2008 Oct 16 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 let s:save_cpo = &cpo set cpo-=C if exists("loaded_matchit") let s:conditionalEnd = '\(([^()]*\)\@!\\([^()]*)\)\@!' let b:match_words = '\\|\\|\\|\\|\\|\\|\\|\\|\\|\:' . s:conditionalEnd endif setlocal suffixesadd=.m setlocal suffixes+=.asv " Change the :browse e filter to primarily show M-files if has("gui_win32") && !exists("b:browsefilter") let b:browsefilter="M-files (*.m)\t*.m\n" . \ "All files (*.*)\t*.*\n" endif let b:undo_ftplugin = "setlocal suffixesadd< suffixes< " \ . "| unlet! b:browsefilter" \ . "| unlet! b:match_words" let &cpo = s:save_cpo