Mercurial > vim
annotate runtime/ftplugin/matlab.vim @ 18649:08cfc1e32ac6
Added tag v8.1.2316 for changeset 53e66eb23321e6035d0c52f62815b8c2631a3bbd
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 17 Nov 2019 19:15:04 +0100 |
parents | 03b854983b14 |
children | 11b656e74444 |
rev | line source |
---|---|
626 | 1 " Vim filetype plugin file |
2 " Language: matlab | |
3 " Maintainer: Jake Wasserman <jwasserman at gmail dot com> | |
18186 | 4 " Last Change: 2019 Sep 27 |
6476 | 5 |
6 " Contributors: | |
7 " Charles Campbell | |
626 | 8 |
856 | 9 if exists("b:did_ftplugin") |
10 finish | |
626 | 11 endif |
12 let b:did_ftplugin = 1 | |
13 | |
14 let s:save_cpo = &cpo | |
15 set cpo-=C | |
16 | |
17 if exists("loaded_matchit") | |
6476 | 18 let s:conditionalEnd = '\%(([^()]*\)\@!\<end\>\%([^()]*)\)\@!' |
19 let b:match_words= | |
20 \ '\<\%(if\|switch\|for\|while\)\>:\<\%(elseif\|case\|break\|continue\|else\|otherwise\)\>:'.s:conditionalEnd.','. | |
21 \ '\<function\>:\<return\>:\<endfunction\>' | |
22 unlet s:conditionalEnd | |
626 | 23 endif |
24 | |
25 setlocal suffixesadd=.m | |
26 setlocal suffixes+=.asv | |
18186 | 27 setlocal commentstring=%\ %s |
626 | 28 |
18186 | 29 let b:undo_ftplugin = "setlocal suffixesadd< suffixes< commentstring< " |
626 | 30 \ . "| unlet! b:match_words" |
31 | |
32 let &cpo = s:save_cpo | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
856
diff
changeset
|
33 unlet s:save_cpo |