1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-21 17:25:11 +01:00
vim/runtime/ftplugin/matlab.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
835 B
VimL
Raw Permalink Normal View History

2006-01-13 22:35:40 +00:00
" Vim filetype plugin file
" Language: matlab
" Maintainer: Jake Wasserman <jwasserman at gmail dot com>
2021-09-09 21:55:11 +02:00
" Update By: Gabriel Dupras
" Last Change: 2021 Aug 30
2015-01-07 16:57:10 +01:00
" Contributors:
" Charles Campbell
2006-01-13 22:35:40 +00:00
2006-04-30 18:54:39 +00:00
if exists("b:did_ftplugin")
finish
2006-01-13 22:35:40 +00:00
endif
let b:did_ftplugin = 1
let s:save_cpo = &cpo
set cpo-=C
if exists("loaded_matchit")
2021-09-09 21:55:11 +02:00
let s:conditionalEnd = '\%(\%(^\|;\)\s*\)\@<=end\>'
2015-01-07 16:57:10 +01:00
let b:match_words=
2021-09-09 21:55:11 +02:00
\ '\<\%(if\|switch\|for\|while\|try\)\>:\<\%(elseif\|case\|break\|continue\|else\|otherwise\|catch\)\>:' . s:conditionalEnd . ',' .
2015-01-07 16:57:10 +01:00
\ '\<function\>:\<return\>:\<endfunction\>'
unlet s:conditionalEnd
2006-01-13 22:35:40 +00:00
endif
setlocal suffixesadd=.m
setlocal suffixes+=.asv
2019-09-27 19:34:08 +02:00
setlocal commentstring=%\ %s
2006-01-13 22:35:40 +00:00
2019-09-27 19:34:08 +02:00
let b:undo_ftplugin = "setlocal suffixesadd< suffixes< commentstring< "
2006-01-13 22:35:40 +00:00
\ . "| unlet! b:match_words"
let &cpo = s:save_cpo
unlet s:save_cpo