File: mupad.vim

package info (click to toggle)
vim 1%3A7.1.314-3%2Blenny2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 39,856 kB
  • ctags: 25,430
  • sloc: ansic: 279,681; cpp: 3,229; makefile: 2,958; perl: 1,232; sh: 857; awk: 715; xml: 507; cs: 458; asm: 114; python: 28; csh: 6
file content (30 lines) | stat: -rw-r--r-- 926 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
" Vim filetype plugin file
" Language:    MuPAD source files
" Maintainer:  Dave Silvia <dsilvia@mchsi.com>
" Filenames:   *.mu
" Date:        6/30/2004

if exists("b:did_ftplugin") | finish | endif
let b:did_ftplugin = 1

" Change the :browse e filter to primarily show MuPAD source files.
if has("gui_win32")
  let  b:browsefilter=
		\ "MuPAD source (*.mu)\t*.mu\n" .
		\	"All Files (*.*)\t*.*\n"
endif

" matchit.vim not loaded -- don't do anyting below
if !exists("loaded_matchit")
	" echomsg "matchit.vim not loaded -- finishing"
	finish
endif

" source the AppendMatchGroup function file
runtime ftplugin/AppendMatchGroup.vim

" fill b:match_words for MuPAD
call AppendMatchGroup('domain,end_domain')
call AppendMatchGroup('proc,begin,end_proc')
call AppendMatchGroup('if,then,elif,else,end_if')
call AppendMatchGroup('\%(for\|while\|repeat\|case\),of,do,break,next,until,\%(end_for\|end_while\|end_repeat\|end_case\)')