home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / runtime / ftplugin / matlab.vim < prev    next >
Encoding:
Text File  |  2012-05-31  |  649 b   |  29 lines

  1. " Vim filetype plugin file
  2. " Language:    matlab
  3. " Maintainer:    Jake Wasserman <jwasserman at gmail dot com>
  4. " Last Changed: 2006 Jan 12
  5.  
  6. if exists("b:did_ftplugin")
  7.     finish
  8. endif
  9. let b:did_ftplugin = 1
  10.  
  11. let s:save_cpo = &cpo
  12. set cpo-=C
  13.  
  14. if 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
  19. endif
  20.  
  21. setlocal suffixesadd=.m
  22. setlocal suffixes+=.asv
  23.  
  24. let b:undo_ftplugin = "setlocal suffixesadd< suffixes< "
  25.     \ . "| unlet! b:match_words"
  26.  
  27. let &cpo = s:save_cpo
  28. unlet s:save_cpo
  29.