[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.16.48.201: ~ $
" Vim syntax file
" Language:	Maple V (based on release 4)
" Maintainer:	Dr. Charles E. Campbell, Jr. <NdrOchipS@PcampbellAfamily.Mbiz>
" Last Change:	Jan 05, 2010
" Version:	10
" URL:	http://mysite.verizon.net/astronaut/vim/index.html#vimlinks_syntax
"
" Package Function Selection: {{{1
" Because there are a lot of packages, and because of the potential for namespace
" clashes, this version of <maple.vim> needs the user to select which, if any,
" package functions should be highlighted.  Select your packages and put into your
" <.vimrc> none or more of the lines following let ...=1 lines:
"
"   if exists("mvpkg_all")
"    ...
"   endif
"
" *OR* let mvpkg_all=1

" This syntax file contains all the keywords and top-level packages of Maple 9.5
" but only the contents of packages of Maple V Release 4, and the top-level
" routines of Release 4.  <Jacques Carette - carette@mcmaster.ca>

" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded
if version < 600
  syntax clear
elseif exists("b:current_syntax")
  finish
endif

" Iskeyword Effects: {{{1
if version < 600
  set iskeyword=$,48-57,_,a-z,@-Z
else
  setlocal iskeyword=$,48-57,_,a-z,@-Z
endif

" Package Selection: {{{1
" allow user to simply select all packages for highlighting
if exists("mvpkg_all")
  let mv_DEtools    = 1
  let mv_Galois     = 1
  let mv_GaussInt   = 1
  let mv_LREtools   = 1
  let mv_combinat   = 1
  let mv_combstruct = 1
  let mv_difforms   = 1
  let mv_finance    = 1
  let mv_genfunc    = 1
  let mv_geometry   = 1
  let mv_grobner    = 1
  let mv_group      = 1
  let mv_inttrans   = 1
  let mv_liesymm    = 1
  let mv_linalg     = 1
  let mv_logic      = 1
  let mv_networks   = 1
  let mv_numapprox  = 1
  let mv_numtheory  = 1
  let mv_orthopoly  = 1
  let mv_padic      = 1
  let mv_plots      = 1
  let mv_plottools  = 1
  let mv_powseries  = 1
  let mv_process    = 1
  let mv_simplex    = 1
  let mv_stats      = 1
  let mv_student    = 1
  let mv_sumtools   = 1
  let mv_tensor     = 1
  let mv_totorder   = 1
endif

" Parenthesis/curly/brace sanity checker: {{{1
syn case match

" parenthesis/curly/brace sanity checker
syn region mvZone	matchgroup=Delimiter start="(" matchgroup=Delimiter end=")" transparent contains=ALLBUT,mvError,mvBraceError,mvCurlyError
syn region mvZone	matchgroup=Delimiter start="{" matchgroup=Delimiter end="}" transparent contains=ALLBUT,mvError,mvBraceError,mvParenError
syn region mvZone	matchgroup=Delimiter start="\[" matchgroup=Delimiter end="]" transparent contains=ALLBUT,mvError,mvCurlyError,mvParenError
syn match  mvError		"[)\]}]"
syn match  mvBraceError	"[)}]"	contained
syn match  mvCurlyError	"[)\]]"	contained
syn match  mvParenError	"[\]}]"	contained
syn match  mvComma		"[,;:]"
syn match  mvSemiError	"[;:]"	contained
syn match  mvDcolon		"::"

" Maple Packages, updated for Maple 9.5
syn keyword mvPackage	algcurves	ArrayTools	Cache	codegen
syn keyword mvPackage	CodeGeneration	CodeTools	combinat	combstruct
syn keyword mvPackage	ContextMenu	CurveFitting	DEtools	diffalg
syn keyword mvPackage	difforms	DiscreteTransforms	Domains	ExternalCalling
syn keyword mvPackage	FileTools	finance	GaussInt	genfunc
syn keyword mvPackage	geom3d	geometry	gfun	Groebner
syn keyword mvPackage	group	hashmset	IntegerRelations	inttrans
syn keyword mvPackage	LargeExpressions	LibraryTools	liesymm	linalg
syn keyword mvPackage	LinearAlgebra	LinearFunctionalSystems	LinearOperators
syn keyword mvPackage	ListTools	Logic	LREtools	Maplets
syn keyword mvPackage	MathematicalFunctions	MathML	Matlab
syn keyword mvPackage	MatrixPolynomialAlgebra	MmaTranslator	networks
syn keyword mvPackage	numapprox	numtheory	Optimization	OreTools
syn keyword mvPackage	Ore_algebra	OrthogonalSeries	orthopoly	padic
syn keyword mvPackage	PDEtools	plots	plottools	PolynomialIdeals
syn keyword mvPackage	PolynomialTools	powseries	process	QDifferenceEquations
syn keyword mvPackage	RandomTools	RationalNormalForms	RealDomain	RootFinding
syn keyword mvPackage	ScientificConstants	ScientificErrorAnalysis	simplex
syn keyword mvPackage	Slode	SNAP	Sockets	SoftwareMetrics
syn keyword mvPackage	SolveTools	Spread	stats	StringTools
syn keyword mvPackage	Student	student	sumtools	SumTools
syn keyword mvPackage	tensor	TypeTools	Units	VariationalCalculus
syn keyword mvPackage	VectorCalculus	Worksheet	XMLTools

" Language Support: {{{1
syn keyword mvTodo	contained	COMBAK	FIXME	TODO	XXX
if exists("g:mapleversion") && g:mapleversion < 9
 syn region  mvString	start=+`+ skip=+``+ end=+`+	keepend	contains=mvTodo,@Spell
 syn region  mvString	start=+"+ skip=+""+ end=+"+	keepend	contains=@Spell
 syn region  mvDelayEval	start=+'+ end=+'+	keepend contains=ALLBUT,mvError,mvBraceError,mvCurlyError,mvParenError,mvSemiError
 syn match   mvVarAssign	"[a-zA-Z_][a-zA-Z_0-9]*[ \t]*:=" contains=mvAssign
 syn match   mvAssign	":="	contained
else
 syn region  mvName		start=+`+ skip=+``+ end=+`+	keepend	contains=mvTodo
 syn region  mvString	start=+"+ skip=+""+ end=+"+	keepend	contains=@Spell
 syn region  mvDelayEval	start=+'+ end=+'+	keepend contains=ALLBUT,mvError,mvBraceError,mvCurlyError,mvParenError
 syn match   mvDelim		"[;:]"	display
 syn match   mvAssign	":="
endif

" Lower-Priority Operators: {{{1
syn match mvOper	"\."

" Number handling: {{{1
syn match mvNumber	"\<\d\+"		" integer
 syn match mvNumber	"[-+]\=\.\d\+"		" . integer
syn match mvNumber	"\<\d\+\.\d\+"		" integer . integer
syn match mvNumber	"\<\d\+\."		" integer .
syn match mvNumber	"\<\d\+\.\."	contains=mvRange	" integer ..

syn match mvNumber	"\<\d\+e[-+]\=\d\+"		" integer e [-+] integer
syn match mvNumber	"[-+]\=\.\d\+e[-+]\=\d\+"	" . integer e [-+] integer
syn match mvNumber	"\<\d\+\.\d*e[-+]\=\d\+"	" integer . [integer] e [-+] integer

syn match mvNumber	"[-+]\d\+"		" integer
syn match mvNumber	"[-+]\d\+\.\d\+"		" integer . integer
syn match mvNumber	"[-+]\d\+\."		" integer .
syn match mvNumber	"[-+]\d\+\.\."	contains=mvRange	" integer ..

syn match mvNumber	"[-+]\d\+e[-+]\=\d\+"	" integer e [-+] integer
syn match mvNumber	"[-+]\d\+\.\d*e[-+]\=\d\+"	" integer . [integer] e [-+] integer

syn match mvRange	"\.\."

" Operators: {{{1
syn keyword mvOper	and not or xor implies union intersect subset minus mod
syn match   mvOper	"<>\|[<>]=\|[<>]\|="
syn match   mvOper	"&+\|&-\|&\*\|&\/\|&"
syn match   mvError	"\.\.\."

" MapleV Statements: ? statement {{{1

" MapleV Statements: ? statement
" Split into booleans, conditionals, operators, repeat-logic, etc
syn keyword mvBool	true	false	FAIL
syn keyword mvCond	elif	else	fi	if	then
syn match   mvCond	"end\s\+if"

syn keyword mvRepeat	by	for	in	to
syn keyword mvRepeat	do	from	od	while
syn match   mvRepeat	"end\s\+do"

syn keyword mvSpecial	NULL
syn match   mvSpecial	"\[\]\|{}"

if exists("g:mapleversion") && g:mapleversion < 9
 syn keyword mvStatement	Order	fail	options	read	save
 syn keyword mvStatement	break	local	point	remember	stop
 syn keyword mvStatement	done	mod	proc	restart	with
 syn keyword mvStatement	end	mods	quit	return
 syn keyword mvStatement	error	next
else
 syn keyword mvStatement	option	options	read	save
 syn keyword mvStatement	break	local	remember	stop
 syn keyword mvStatement	done	mod	proc	restart
 syn keyword mvStatement	end	mods	quit	return
 syn keyword mvStatement	error	next	try	catch
 syn keyword mvStatement	finally	assuming	global	export
 syn keyword mvStatement	module	description	use
endif

" Builtin Constants: ? constants {{{1
syn keyword mvConstant	Catalan	I	gamma	infinity
syn keyword mvConstant	Pi

" Comments:  DEBUG, if in a comment, is specially highlighted. {{{1
syn keyword mvDebug	contained	DEBUG
syn cluster mvCommentGroup	contains=mvTodo,mvDebug,@Spell
syn match mvComment "#.*$"	contains=@mvCommentGroup

" Basic Library Functions: ? index[function]
syn keyword mvLibrary $	@	@@	ERROR
syn keyword mvLibrary AFactor	KelvinHer	arctan	factor	log	rhs
syn keyword mvLibrary AFactors	KelvinKei	arctanh	factors	log10	root
syn keyword mvLibrary AiryAi	KelvinKer	argument	fclose	lprint	roots
syn keyword mvLibrary AiryBi	LambertW	array	feof	map	round
syn keyword mvLibrary AngerJ	Lcm	assign	fflush	map2	rsolve
syn keyword mvLibrary Berlekamp	LegendreE	assigned	filepos	match	savelib
syn keyword mvLibrary BesselI	LegendreEc	asspar	fixdiv	matrix	scanf
syn keyword mvLibrary BesselJ	LegendreEc1	assume	float	max	searchtext
syn keyword mvLibrary BesselK	LegendreF	asubs	floor	maximize	sec
syn keyword mvLibrary BesselY	LegendreKc	asympt	fnormal	maxnorm	sech
syn keyword mvLibrary Beta	LegendreKc1	attribute	fopen	maxorder	select
syn keyword mvLibrary C	LegendrePi	bernstein	forget	member	seq
syn keyword mvLibrary Chi	LegendrePic	branches	fortran	min	series
syn keyword mvLibrary Ci	LegendrePic1	bspline	fprintf	minimize	setattribute
syn keyword mvLibrary CompSeq	Li	cat	frac	minpoly	shake
syn keyword mvLibrary Content	Linsolve	ceil	freeze	modp	showprofile
syn keyword mvLibrary D	MOLS	chrem	fremove	modp1	showtime
syn keyword mvLibrary DESol	Maple_floats	close	frontend	modp2	sign
syn keyword mvLibrary Det	MeijerG	close	fscanf	modpol	signum
syn keyword mvLibrary Diff	Norm	coeff	fsolve	mods	simplify
syn keyword mvLibrary Dirac	Normal	coeffs	galois	msolve	sin
syn keyword mvLibrary DistDeg	Nullspace	coeftayl	gc	mtaylor	singular
syn keyword mvLibrary Divide	Power	collect	gcd	mul	sinh
syn keyword mvLibrary Ei	Powmod	combine	gcdex	nextprime	sinterp
syn keyword mvLibrary Eigenvals	Prem	commutat	genpoly	nops	solve
syn keyword mvLibrary EllipticCE	Primfield	comparray	harmonic	norm	sort
syn keyword mvLibrary EllipticCK	Primitive	compoly	has	normal	sparse
syn keyword mvLibrary EllipticCPi	Primpart	conjugate	hasfun	numboccur	spline
syn keyword mvLibrary EllipticE	ProbSplit	content	hasoption	numer	split
syn keyword mvLibrary EllipticF	Product	convergs	hastype	op	splits
syn keyword mvLibrary EllipticK	Psi	convert	heap	open	sprem
syn keyword mvLibrary EllipticModulus	Quo	coords	history	optimize	sprintf
syn keyword mvLibrary EllipticNome	RESol	copy	hypergeom	order	sqrfree
syn keyword mvLibrary EllipticPi	Randpoly	cos	iFFT	parse	sqrt
syn keyword mvLibrary Eval	Randprime	cosh	icontent	pclose	sscanf
syn keyword mvLibrary Expand	Ratrecon	cost	identity	pclose	ssystem
syn keyword mvLibrary FFT	Re	cot	igcd	pdesolve	stack
syn keyword mvLibrary Factor	Rem	coth	igcdex	piecewise	sturm
syn keyword mvLibrary Factors	Resultant	csc	ilcm	plot	sturmseq
syn keyword mvLibrary FresnelC	RootOf	csch	ilog	plot3d	subs
syn keyword mvLibrary FresnelS	Roots	csgn	ilog10	plotsetup	subsop
syn keyword mvLibrary Fresnelf	SPrem	dawson	implicitdiff	pochhammer	substring
syn keyword mvLibrary Fresnelg	Searchtext	define	indets	pointto	sum
syn keyword mvLibrary Frobenius	Shi	degree	index	poisson	surd
syn keyword mvLibrary GAMMA	Si	denom	indexed	polar	symmdiff
syn keyword mvLibrary GaussAGM	Smith	depends	indices	polylog	symmetric
syn keyword mvLibrary Gaussejord	Sqrfree	diagonal	inifcn	polynom	system
syn keyword mvLibrary Gausselim	Ssi	diff	ininame	powmod	table
syn keyword mvLibrary Gcd	StruveH	dilog	initialize	prem	tan
syn keyword mvLibrary Gcdex	StruveL	dinterp	insert	prevprime	tanh
syn keyword mvLibrary HankelH1	Sum	disassemble	int	primpart	testeq
syn keyword mvLibrary HankelH2	Svd	discont	interface	print	testfloat
syn keyword mvLibrary Heaviside	TEXT	discrim	interp	printf	thaw
syn keyword mvLibrary Hermite	Trace	dismantle	invfunc	procbody	thiele
syn keyword mvLibrary Im	WeberE	divide	invztrans	procmake	time
syn keyword mvLibrary Indep	WeierstrassP	dsolve	iostatus	product	translate
syn keyword mvLibrary Interp	WeierstrassPPrime	eliminate	iperfpow	proot	traperror
syn keyword mvLibrary Inverse	WeierstrassSigma	ellipsoid	iquo	property	trigsubs
syn keyword mvLibrary Irreduc	WeierstrassZeta	entries	iratrecon	protect	trunc
syn keyword mvLibrary Issimilar	Zeta	eqn	irem	psqrt	type
syn keyword mvLibrary JacobiAM	abs	erf	iroot	quo	typematch
syn keyword mvLibrary JacobiCD	add	erfc	irreduc	radnormal	unames
syn keyword mvLibrary JacobiCN	addcoords	eulermac	iscont	radsimp	unapply
syn keyword mvLibrary JacobiCS	addressof	eval	isdifferentiable	rand	unassign
syn keyword mvLibrary JacobiDC	algebraic	evala	isolate	randomize	unload
syn keyword mvLibrary JacobiDN	algsubs	evalapply	ispoly	randpoly	unprotect
syn keyword mvLibrary JacobiDS	alias	evalb	isqrfree	range	updatesR4
syn keyword mvLibrary JacobiNC	allvalues	evalc	isqrt	rationalize	userinfo
syn keyword mvLibrary JacobiND	anames	evalf	issqr	ratrecon	value
syn keyword mvLibrary JacobiNS	antisymm	evalfint	latex	readbytes	vector
syn keyword mvLibrary JacobiSC	applyop	evalgf	lattice	readdata	verify
syn keyword mvLibrary JacobiSD	arccos	evalhf	lcm	readlib	whattype
syn keyword mvLibrary JacobiSN	arccosh	evalm	lcoeff	readline	with
syn keyword mvLibrary JacobiTheta1	arccot	evaln	leadterm	readstat	writebytes
syn keyword mvLibrary JacobiTheta2	arccoth	evalr	length	realroot	writedata
syn keyword mvLibrary JacobiTheta3	arccsc	exp	lexorder	recipoly	writeline
syn keyword mvLibrary JacobiTheta4	arccsch	expand	lhs	rem	writestat
syn keyword mvLibrary JacobiZeta	arcsec	expandoff	limit	remove	writeto
syn keyword mvLibrary KelvinBei	arcsech	expandon	ln	residue	zip
syn keyword mvLibrary KelvinBer	arcsin	extract	lnGAMMA	resultant	ztrans
syn keyword mvLibrary KelvinHei	arcsinh


" ==  PACKAGES  ======================================================= {{{1
" Note: highlighting of package functions is now user-selectable by package.

" Package: DEtools     differential equations tools {{{2
if exists("mv_DEtools")
  syn keyword mvPkg_DEtools	DEnormal	Dchangevar	autonomous	dfieldplot	reduceOrder	untranslate
  syn keyword mvPkg_DEtools	DEplot	PDEchangecoords	convertAlg	indicialeq	regularsp	varparam
  syn keyword mvPkg_DEtools	DEplot3d	PDEplot	convertsys	phaseportrait	translate
endif

" Package: Domains: create domains of computation {{{2
if exists("mv_Domains")
endif

" Package: GF: Galois Fields {{{2
if exists("mv_GF")
  syn keyword mvPkg_Galois	galois
endif

" Package: GaussInt: Gaussian Integers {{{2
if exists("mv_GaussInt")
  syn keyword mvPkg_GaussInt	GIbasis	GIfactor	GIissqr	GInorm	GIquadres	GIsmith
  syn keyword mvPkg_GaussInt	GIchrem	GIfactors	GIlcm	GInormal	GIquo	GIsqrfree
  syn keyword mvPkg_GaussInt	GIdivisor	GIgcd	GImcmbine	GIorder	GIrem	GIsqrt
  syn keyword mvPkg_GaussInt	GIfacpoly	GIgcdex	GInearest	GIphi	GIroots	GIunitnormal
  syn keyword mvPkg_GaussInt	GIfacset	GIhermite	GInodiv	GIprime	GIsieve
endif

" Package: LREtools: manipulate linear recurrence relations {{{2
if exists("mv_LREtools")
  syn keyword mvPkg_LREtools	REcontent	REprimpart	REtodelta	delta	hypergeomsols	ratpolysols
  syn keyword mvPkg_LREtools	REcreate	REreduceorder	REtoproc	dispersion	polysols	shift
  syn keyword mvPkg_LREtools	REplot	REtoDE	constcoeffsol
endif

" Package: combinat: combinatorial functions {{{2
if exists("mv_combinat")
  syn keyword mvPkg_combinat	Chi	composition	graycode	numbcomb	permute	randperm
  syn keyword mvPkg_combinat	bell	conjpart	inttovec	numbcomp	powerset	stirling1
  syn keyword mvPkg_combinat	binomial	decodepart	lastpart	numbpart	prevpart	stirling2
  syn keyword mvPkg_combinat	cartprod	encodepart	multinomial	numbperm	randcomb	subsets
  syn keyword mvPkg_combinat	character	fibonacci	nextpart	partition	randpart	vectoint
  syn keyword mvPkg_combinat	choose	firstpart
endif

" Package: combstruct: combinatorial structures {{{2
if exists("mv_combstruct")
  syn keyword mvPkg_combstruct	allstructs	draw	iterstructs	options	specification	structures
  syn keyword mvPkg_combstruct	count	finished	nextstruct
endif

" Package: difforms: differential forms {{{2
if exists("mv_difforms")
  syn keyword mvPkg_difforms	const	defform	formpart	parity	scalarpart	wdegree
  syn keyword mvPkg_difforms	d	form	mixpar	scalar	simpform	wedge
endif

" Package: finance: financial mathematics {{{2
if exists("mv_finance")
  syn keyword mvPkg_finance	amortization	cashflows	futurevalue	growingperpetuity	mv_finance	presentvalue
  syn keyword mvPkg_finance	annuity	effectiverate	growingannuity	levelcoupon	perpetuity	yieldtomaturity
  syn keyword mvPkg_finance	blackscholes
endif

" Package: genfunc: rational generating functions {{{2
if exists("mv_genfunc")
  syn keyword mvPkg_genfunc	rgf_charseq	rgf_expand	rgf_hybrid	rgf_pfrac	rgf_sequence	rgf_term
  syn keyword mvPkg_genfunc	rgf_encode	rgf_findrecur	rgf_norm	rgf_relate	rgf_simp	termscale
endif

" Package: geometry: Euclidean geometry {{{2
if exists("mv_geometry")
  syn keyword mvPkg_geometry	circle	dsegment	hyperbola	parabola	segment	triangle
  syn keyword mvPkg_geometry	conic	ellipse	line	point	square
endif

" Package: grobner: Grobner bases {{{2
if exists("mv_grobner")
  syn keyword mvPkg_grobner	finduni	gbasis	leadmon	normalf	solvable	spoly
  syn keyword mvPkg_grobner	finite	gsolve
endif

" Package: group: permutation and finitely-presented groups {{{2
if exists("mv_group")
  syn keyword mvPkg_group	DerivedS	areconjugate	cosets	grouporder	issubgroup	permrep
  syn keyword mvPkg_group	LCS	center	cosrep	inter	mulperms	pres
  syn keyword mvPkg_group	NormalClosure	centralizer	derived	invperm	normalizer	subgrel
  syn keyword mvPkg_group	RandElement	convert	grelgroup	isabelian	orbit	type
  syn keyword mvPkg_group	Sylow	core	groupmember	isnormal	permgroup
endif

" Package: inttrans: integral transforms {{{2
if exists("mv_inttrans")
  syn keyword mvPkg_inttrans	addtable	fouriercos	hankel	invfourier	invlaplace	mellin
  syn keyword mvPkg_inttrans	fourier	fouriersin	hilbert	invhilbert	laplace
endif

" Package: liesymm: Lie symmetries {{{2
if exists("mv_liesymm")
  syn keyword mvPkg_liesymm	&^	TD	depvars	getform	mixpar	vfix
  syn keyword mvPkg_liesymm	&mod	annul	determine	hasclosure	prolong	wcollect
  syn keyword mvPkg_liesymm	Eta	autosimp	dvalue	hook	reduce	wdegree
  syn keyword mvPkg_liesymm	Lie	close	extvars	indepvars	setup	wedgeset
  syn keyword mvPkg_liesymm	Lrank	d	getcoeff	makeforms	translate	wsubs
endif

" Package: linalg: Linear algebra {{{2
if exists("mv_linalg")
  syn keyword mvPkg_linalg	GramSchmidt	coldim	equal	indexfunc	mulcol	singval
  syn keyword mvPkg_linalg	JordanBlock	colspace	exponential	innerprod	multiply	smith
  syn keyword mvPkg_linalg	LUdecomp	colspan	extend	intbasis	norm	stack
  syn keyword mvPkg_linalg	QRdecomp	companion	ffgausselim	inverse	normalize	submatrix
  syn keyword mvPkg_linalg	addcol	cond	fibonacci	ismith	orthog	subvector
  syn keyword mvPkg_linalg	addrow	copyinto	forwardsub	issimilar	permanent	sumbasis
  syn keyword mvPkg_linalg	adjoint	crossprod	frobenius	iszero	pivot	swapcol
  syn keyword mvPkg_linalg	angle	curl	gausselim	jacobian	potential	swaprow
  syn keyword mvPkg_linalg	augment	definite	gaussjord	jordan	randmatrix	sylvester
  syn keyword mvPkg_linalg	backsub	delcols	geneqns	kernel	randvector	toeplitz
  syn keyword mvPkg_linalg	band	delrows	genmatrix	laplacian	rank	trace
  syn keyword mvPkg_linalg	basis	det	grad	leastsqrs	references	transpose
  syn keyword mvPkg_linalg	bezout	diag	hadamard	linsolve	row	vandermonde
  syn keyword mvPkg_linalg	blockmatrix	diverge	hermite	matadd	rowdim	vecpotent
  syn keyword mvPkg_linalg	charmat	dotprod	hessian	matrix	rowspace	vectdim
  syn keyword mvPkg_linalg	charpoly	eigenval	hilbert	minor	rowspan	vector
  syn keyword mvPkg_linalg	cholesky	eigenvect	htranspose	minpoly	scalarmul	wronskian
  syn keyword mvPkg_linalg	col	entermatrix	ihermite
endif

" Package: logic: Boolean logic {{{2
if exists("mv_logic")
  syn keyword mvPkg_logic	MOD2	bsimp	distrib	environ	randbool	tautology
  syn keyword mvPkg_logic	bequal	canon	dual	frominert	satisfy	toinert
endif

" Package: networks: graph networks {{{2
if exists("mv_networks")
  syn keyword mvPkg_networks	acycpoly	connect	dinic	graph	mincut	show
  syn keyword mvPkg_networks	addedge	connectivity	djspantree	graphical	mindegree	shrink
  syn keyword mvPkg_networks	addvertex	contract	dodecahedron	gsimp	neighbors	span
  syn keyword mvPkg_networks	adjacency	countcuts	draw	gunion	new	spanpoly
  syn keyword mvPkg_networks	allpairs	counttrees	duplicate	head	octahedron	spantree
  syn keyword mvPkg_networks	ancestor	cube	edges	icosahedron	outdegree	tail
  syn keyword mvPkg_networks	arrivals	cycle	ends	incidence	path	tetrahedron
  syn keyword mvPkg_networks	bicomponents	cyclebase	eweight	incident	petersen	tuttepoly
  syn keyword mvPkg_networks	charpoly	daughter	flow	indegree	random	vdegree
  syn keyword mvPkg_networks	chrompoly	degreeseq	flowpoly	induce	rank	vertices
  syn keyword mvPkg_networks	complement	delete	fundcyc	isplanar	rankpoly	void
  syn keyword mvPkg_networks	complete	departures	getlabel	maxdegree	shortpathtree	vweight
  syn keyword mvPkg_networks	components	diameter	girth
endif

" Package: numapprox: numerical approximation {{{2
if exists("mv_numapprox")
  syn keyword mvPkg_numapprox	chebdeg	chebsort	fnorm	laurent	minimax	remez
  syn keyword mvPkg_numapprox	chebmult	chebyshev	hornerform	laurent	pade	taylor
  syn keyword mvPkg_numapprox	chebpade	confracform	infnorm	minimax
endif

" Package: numtheory: number theory {{{2
if exists("mv_numtheory")
  syn keyword mvPkg_numtheory	B	cyclotomic	invcfrac	mcombine	nthconver	primroot
  syn keyword mvPkg_numtheory	F	divisors	invphi	mersenne	nthdenom	quadres
  syn keyword mvPkg_numtheory	GIgcd	euler	isolve	minkowski	nthnumer	rootsunity
  syn keyword mvPkg_numtheory	J	factorEQ	isprime	mipolys	nthpow	safeprime
  syn keyword mvPkg_numtheory	L	factorset	issqrfree	mlog	order	sigma
  syn keyword mvPkg_numtheory	M	fermat	ithprime	mobius	pdexpand	sq2factor
  syn keyword mvPkg_numtheory	bernoulli	ifactor	jacobi	mroot	phi	sum2sqr
  syn keyword mvPkg_numtheory	bigomega	ifactors	kronecker	msqrt	pprimroot	tau
  syn keyword mvPkg_numtheory	cfrac	imagunit	lambda	nearestp	prevprime	thue
  syn keyword mvPkg_numtheory	cfracpol	index	legendre	nextprime
endif

" Package: orthopoly: orthogonal polynomials {{{2
if exists("mv_orthopoly")
  syn keyword mvPkg_orthopoly	G	H	L	P	T	U
endif

" Package: padic: p-adic numbers {{{2
if exists("mv_padic")
  syn keyword mvPkg_padic	evalp	function	orderp	ratvaluep	rootp	valuep
  syn keyword mvPkg_padic	expansion	lcoeffp	ordp
endif

" Package: plots: graphics package {{{2
if exists("mv_plots")
  syn keyword mvPkg_plots	animate	coordplot3d	gradplot3d	listplot3d	polarplot	setoptions3d
  syn keyword mvPkg_plots	animate3d	cylinderplot	implicitplot	loglogplot	polygonplot	spacecurve
  syn keyword mvPkg_plots	changecoords	densityplot	implicitplot3d	logplot	polygonplot3d	sparsematrixplot
  syn keyword mvPkg_plots	complexplot	display	inequal	matrixplot	polyhedraplot	sphereplot
  syn keyword mvPkg_plots	complexplot3d	display3d	listcontplot	odeplot	replot	surfdata
  syn keyword mvPkg_plots	conformal	fieldplot	listcontplot3d	pareto	rootlocus	textplot
  syn keyword mvPkg_plots	contourplot	fieldplot3d	listdensityplot	pointplot	semilogplot	textplot3d
  syn keyword mvPkg_plots	contourplot3d	gradplot	listplot	pointplot3d	setoptions	tubeplot
  syn keyword mvPkg_plots	coordplot
endif

" Package: plottools: basic graphical objects {{{2
if exists("mv_plottools")
  syn keyword mvPkg_plottools	arc	curve	dodecahedron	hyperbola	pieslice	semitorus
  syn keyword mvPkg_plottools	arrow	cutin	ellipse	icosahedron	point	sphere
  syn keyword mvPkg_plottools	circle	cutout	ellipticArc	line	polygon	tetrahedron
  syn keyword mvPkg_plottools	cone	cylinder	hemisphere	octahedron	rectangle	torus
  syn keyword mvPkg_plottools	cuboid	disk	hexahedron
endif

" Package: powseries: formal power series {{{2
if exists("mv_powseries")
  syn keyword mvPkg_powseries	compose	multiply	powcreate	powlog	powsolve	reversion
  syn keyword mvPkg_powseries	evalpow	negative	powdiff	powpoly	powsqrt	subtract
  syn keyword mvPkg_powseries	inverse	powadd	powexp	powseries	quotient	tpsform
  syn keyword mvPkg_powseries	multconst	powcos	powint	powsin
endif

" Package: process: (Unix)-multi-processing {{{2
if exists("mv_process")
  syn keyword mvPkg_process	block	fork	pclose	pipe	popen	wait
  syn keyword mvPkg_process	exec	kill
endif

" Package: simplex: linear optimization {{{2
if exists("mv_simplex")
  syn keyword mvPkg_simplex	NONNEGATIVE	cterm	dual	maximize	pivoteqn	setup
  syn keyword mvPkg_simplex	basis	define_zero	equality	minimize	pivotvar	standardize
  syn keyword mvPkg_simplex	convexhull	display	feasible	pivot	ratio
endif

" Package: stats: statistics {{{2
if exists("mv_stats")
  syn keyword mvPkg_stats	anova	describe	fit	random	statevalf	statplots
endif

" Package: student: student calculus {{{2
if exists("mv_student")
  syn keyword mvPkg_student	D	Product	distance	isolate	middlesum	rightsum
  syn keyword mvPkg_student	Diff	Sum	equate	leftbox	midpoint	showtangent
  syn keyword mvPkg_student	Doubleint	Tripleint	extrema	leftsum	minimize	simpson
  syn keyword mvPkg_student	Int	changevar	integrand	makeproc	minimize	slope
  syn keyword mvPkg_student	Limit	combine	intercept	maximize	powsubs	trapezoid
  syn keyword mvPkg_student	Lineint	completesquare	intparts	middlebox	rightbox	value
  syn keyword mvPkg_student	Point
endif

" Package: sumtools: indefinite and definite sums {{{2
if exists("mv_sumtools")
  syn keyword mvPkg_sumtools	Hypersum	extended_gosper	hyperrecursion	hyperterm	sumrecursion	sumtohyper
  syn keyword mvPkg_sumtools	Sumtohyper	gosper	hypersum	simpcomb
endif

" Package: tensor: tensor computations and General Relativity {{{2
if exists("mv_tensor")
  syn keyword mvPkg_tensor	Christoffel1	Riemann	connexF	display_allGR	get_compts	partial_diff
  syn keyword mvPkg_tensor	Christoffel2	RiemannF	contract	dual	get_rank	permute_indices
  syn keyword mvPkg_tensor	Einstein	Weyl	convertNP	entermetric	invars	petrov
  syn keyword mvPkg_tensor	Jacobian	act	cov_diff	exterior_diff	invert	prod
  syn keyword mvPkg_tensor	Killing_eqns	antisymmetrize	create	exterior_prod	lin_com	raise
  syn keyword mvPkg_tensor	Levi_Civita	change_basis	d1metric	frame	lower	symmetrize
  syn keyword mvPkg_tensor	Lie_diff	commutator	d2metric	geodesic_eqns	npcurve	tensorsGR
  syn keyword mvPkg_tensor	Ricci	compare	directional_diff	get_char	npspin	transform
  syn keyword mvPkg_tensor	Ricciscalar	conj	displayGR
endif

" Package: totorder: total orders on names {{{2
if exists("mv_totorder")
  syn keyword mvPkg_totorder	forget	init	ordering	tassume	tis
endif
" =====================================================================

" Highlighting: Define the default highlighting. {{{1
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet
if version >= 508 || !exists("did_maplev_syntax_inits")
  if version < 508
    let did_maplev_syntax_inits = 1
    command -nargs=+ HiLink hi link <args>
  else
    command -nargs=+ HiLink hi def link <args>
  endif

  " Maple->Maple Links {{{2
  HiLink mvBraceError	mvError
  HiLink mvCurlyError	mvError
  HiLink mvDebug		mvTodo
  HiLink mvParenError	mvError
  HiLink mvPkg_DEtools	mvPkgFunc
  HiLink mvPkg_Galois	mvPkgFunc
  HiLink mvPkg_GaussInt	mvPkgFunc
  HiLink mvPkg_LREtools	mvPkgFunc
  HiLink mvPkg_combinat	mvPkgFunc
  HiLink mvPkg_combstruct	mvPkgFunc
  HiLink mvPkg_difforms	mvPkgFunc
  HiLink mvPkg_finance	mvPkgFunc
  HiLink mvPkg_genfunc	mvPkgFunc
  HiLink mvPkg_geometry	mvPkgFunc
  HiLink mvPkg_grobner	mvPkgFunc
  HiLink mvPkg_group	mvPkgFunc
  HiLink mvPkg_inttrans	mvPkgFunc
  HiLink mvPkg_liesymm	mvPkgFunc
  HiLink mvPkg_linalg	mvPkgFunc
  HiLink mvPkg_logic	mvPkgFunc
  HiLink mvPkg_networks	mvPkgFunc
  HiLink mvPkg_numapprox	mvPkgFunc
  HiLink mvPkg_numtheory	mvPkgFunc
  HiLink mvPkg_orthopoly	mvPkgFunc
  HiLink mvPkg_padic	mvPkgFunc
  HiLink mvPkg_plots	mvPkgFunc
  HiLink mvPkg_plottools	mvPkgFunc
  HiLink mvPkg_powseries	mvPkgFunc
  HiLink mvPkg_process	mvPkgFunc
  HiLink mvPkg_simplex	mvPkgFunc
  HiLink mvPkg_stats	mvPkgFunc
  HiLink mvPkg_student	mvPkgFunc
  HiLink mvPkg_sumtools	mvPkgFunc
  HiLink mvPkg_tensor	mvPkgFunc
  HiLink mvPkg_totorder	mvPkgFunc
  HiLink mvRange		mvOper
  HiLink mvSemiError	mvError
  HiLink mvDelim		Delimiter

  " Maple->Standard Links {{{2
  HiLink mvAssign		Delimiter
  HiLink mvBool		Boolean
  HiLink mvComma		Delimiter
  HiLink mvComment		Comment
  HiLink mvCond		Conditional
  HiLink mvConstant		Number
  HiLink mvDelayEval	Label
  HiLink mvDcolon		Delimiter
  HiLink mvError		Error
  HiLink mvLibrary		Statement
  HiLink mvNumber		Number
  HiLink mvOper		Operator
  HiLink mvAssign		Delimiter
  HiLink mvPackage		Type
  HiLink mvPkgFunc		Function
  HiLink mvPktOption	Special
  HiLink mvRepeat		Repeat
  HiLink mvSpecial		Special
  HiLink mvStatement	Statement
  HiLink mvName		String
  HiLink mvString		String
  HiLink mvTodo		Todo

  delcommand HiLink
endif

" Current Syntax: {{{1
let b:current_syntax = "maple"
" vim: ts=20 fdm=marker

Filemanager

Name Type Size Permission Actions
2html.vim File 67.44 KB 0644
README.txt File 1.37 KB 0644
a2ps.vim File 2.36 KB 0644
a65.vim File 6.62 KB 0644
aap.vim File 5.56 KB 0644
abap.vim File 9.24 KB 0644
abaqus.vim File 1.45 KB 0644
abc.vim File 2.17 KB 0644
abel.vim File 5.32 KB 0644
acedb.vim File 5.11 KB 0644
ada.vim File 12.74 KB 0644
aflex.vim File 4.71 KB 0644
ahdl.vim File 3.08 KB 0644
alsaconf.vim File 1.5 KB 0644
amiga.vim File 3.28 KB 0644
aml.vim File 23.93 KB 0644
ampl.vim File 4.19 KB 0644
ant.vim File 5.68 KB 0644
antlr.vim File 2.14 KB 0644
apache.vim File 14.78 KB 0644
apachestyle.vim File 1.7 KB 0644
aptconf.vim File 19.13 KB 0644
arch.vim File 1.11 KB 0644
art.vim File 1.27 KB 0644
asciidoc.vim File 10.6 KB 0644
asm.vim File 4.32 KB 0644
asm68k.vim File 14.3 KB 0644
asmh8300.vim File 2.42 KB 0644
asn.vim File 2.87 KB 0644
aspperl.vim File 1016 B 0644
aspvbs.vim File 9.25 KB 0644
asterisk.vim File 5.45 KB 0644
asteriskvm.vim File 2.56 KB 0644
atlas.vim File 2.9 KB 0644
autohotkey.vim File 9.75 KB 0644
autoit.vim File 46.89 KB 0644
automake.vim File 4.25 KB 0644
ave.vim File 2.21 KB 0644
awk.vim File 7.54 KB 0644
ayacc.vim File 2.88 KB 0644
b.vim File 5.09 KB 0644
baan.vim File 72.26 KB 0644
basic.vim File 8.31 KB 0644
bc.vim File 2.13 KB 0644
bdf.vim File 3.74 KB 0644
bib.vim File 3.76 KB 0644
bindzone.vim File 5.09 KB 0644
blank.vim File 1.18 KB 0644
bst.vim File 3.31 KB 0644
btm.vim File 9.41 KB 0644
bzr.vim File 1.91 KB 0644
c.vim File 24.25 KB 0644
cabal.vim File 4.59 KB 0644
calendar.vim File 4.91 KB 0644
catalog.vim File 921 B 0644
cdl.vim File 3.27 KB 0644
cdrdaoconf.vim File 3.55 KB 0644
cdrtoc.vim File 22.21 KB 0644
cf.vim File 28.9 KB 0644
cfg.vim File 1.71 KB 0644
ch.vim File 1.26 KB 0644
chaiscript.vim File 2.82 KB 0644
change.vim File 1.28 KB 0644
changelog.vim File 2.79 KB 0644
chaskell.vim File 396 B 0644
cheetah.vim File 2.08 KB 0644
chill.vim File 8.08 KB 0644
chordpro.vim File 2.46 KB 0644
cl.vim File 4.18 KB 0644
clean.vim File 3.28 KB 0644
clipper.vim File 5.82 KB 0644
clojure.vim File 22.82 KB 0644
cmake.vim File 4.35 KB 0644
cmusrc.vim File 12.61 KB 0644
cobol.vim File 10.07 KB 0644
coco.vim File 1.26 KB 0644
colortest.vim File 3.13 KB 0644
conaryrecipe.vim File 7.85 KB 0644
conf.vim File 799 B 0644
config.vim File 1.8 KB 0644
context.vim File 4.08 KB 0644
cpp.vim File 2.58 KB 0644
crm.vim File 1.16 KB 0644
crontab.vim File 2.51 KB 0644
cs.vim File 5.95 KB 0644
csc.vim File 8.58 KB 0644
csdl.vim File 23.2 KB 0644
csh.vim File 6.84 KB 0644
csp.vim File 7.33 KB 0644
css.vim File 23.08 KB 0644
cterm.vim File 6.58 KB 0644
ctrlh.vim File 688 B 0644
cucumber.vim File 31.14 KB 0644
cuda.vim File 2.77 KB 0644
cupl.vim File 4.13 KB 0644
cuplsim.vim File 2.32 KB 0644
cvs.vim File 1.27 KB 0644
cvsrc.vim File 1.21 KB 0644
cweb.vim File 3.29 KB 0644
cynlib.vim File 2.94 KB 0644
cynpp.vim File 1.74 KB 0644
d.vim File 27.36 KB 0644
datascript.vim File 3.39 KB 0644
dcd.vim File 2.15 KB 0644
dcl.vim File 6.47 KB 0644
debchangelog.vim File 2.47 KB 0644
debcontrol.vim File 7.07 KB 0644
debsources.vim File 1.32 KB 0644
def.vim File 1.46 KB 0644
denyhosts.vim File 7.18 KB 0644
desc.vim File 3.41 KB 0644
desktop.vim File 4.34 KB 0644
dictconf.vim File 3.03 KB 0644
dictdconf.vim File 6.3 KB 0644
diff.vim File 16.5 KB 0644
dircolors.vim File 41.07 KB 0644
dirpager.vim File 1.75 KB 0644
diva.vim File 4.95 KB 0644
django.vim File 4.2 KB 0644
dns.vim File 132 B 0644
dnsmasq.vim File 8.97 KB 0644
docbk.vim File 10.52 KB 0644
docbksgml.vim File 193 B 0644
docbkxml.vim File 191 B 0644
dosbatch.vim File 6.46 KB 0644
dosini.vim File 1.51 KB 0644
dot.vim File 3.32 KB 0644
doxygen.vim File 35.2 KB 0644
dracula.vim File 3 KB 0644
dsl.vim File 1.28 KB 0644
dtd.vim File 5.11 KB 0644
dtml.vim File 16.67 KB 0644
dtrace.vim File 6.34 KB 0644
dts.vim File 1.1 KB 0644
dylan.vim File 3.72 KB 0644
dylanintr.vim File 1.45 KB 0644
dylanlid.vim File 1.06 KB 0644
ecd.vim File 1.52 KB 0644
edif.vim File 1.61 KB 0644
eiffel.vim File 7.06 KB 0644
elf.vim File 2.65 KB 0644
elinks.vim File 10.24 KB 0644
elmfilt.vim File 3.19 KB 0644
erlang.vim File 10.63 KB 0644
eruby.vim File 2.83 KB 0644
esmtprc.vim File 1.01 KB 0644
esqlc.vim File 2.5 KB 0644
esterel.vim File 3.27 KB 0644
eterm.vim File 18.71 KB 0644
eviews.vim File 5.29 KB 0644
exim.vim File 17.84 KB 0644
expect.vim File 4.02 KB 0644
exports.vim File 2.08 KB 0644
falcon.vim File 11.68 KB 0644
fan.vim File 5.32 KB 0644
fasm.vim File 8.54 KB 0644
fdcc.vim File 5.82 KB 0644
fetchmail.vim File 3.22 KB 0644
fgl.vim File 7.48 KB 0644
flexwiki.vim File 5.34 KB 0644
focexec.vim File 3.82 KB 0644
form.vim File 6.65 KB 0644
forth.vim File 13.2 KB 0644
fortran.vim File 25.92 KB 0644
foxpro.vim File 32.37 KB 0644
framescript.vim File 11.39 KB 0644
freebasic.vim File 10.27 KB 0644
fstab.vim File 15.19 KB 0644
fvwm.vim File 24.44 KB 0644
fvwm2m4.vim File 828 B 0644
gdb.vim File 4.63 KB 0644
gdmo.vim File 3.59 KB 0644
gedcom.vim File 2.61 KB 0644
git.vim File 4.06 KB 0644
gitcommit.vim File 4.72 KB 0644
gitconfig.vim File 1.58 KB 0644
gitolite.vim File 3.5 KB 0644
gitrebase.vim File 1.69 KB 0644
gitsendemail.vim File 437 B 0644
gkrellmrc.vim File 4.24 KB 0644
gnash.vim File 3.48 KB 0644
gnuplot.vim File 9.41 KB 0644
gp.vim File 3.06 KB 0644
gpg.vim File 5.45 KB 0644
gprof.vim File 2.07 KB 0644
grads.vim File 2.06 KB 0644
gretl.vim File 4.05 KB 0644
groff.vim File 292 B 0644
groovy.vim File 22.34 KB 0644
group.vim File 1.67 KB 0644
grub.vim File 3.78 KB 0644
gsp.vim File 2.21 KB 0644
gtkrc.vim File 9.25 KB 0644
haml.vim File 6.86 KB 0644
hamster.vim File 13.9 KB 0644
haskell.vim File 8.53 KB 0644
haste.vim File 4.97 KB 0644
hastepreproc.vim File 1.59 KB 0644
hb.vim File 3.47 KB 0644
help.vim File 7.76 KB 0644
hercules.vim File 6.01 KB 0644
hex.vim File 1.65 KB 0644
hgcommit.vim File 1.09 KB 0644
hitest.vim File 3.6 KB 0644
hog.vim File 17.74 KB 0644
hostconf.vim File 3.77 KB 0644
hostsaccess.vim File 607 B 0644
html.vim File 15.47 KB 0644
htmlcheetah.vim File 672 B 0644
htmldjango.vim File 1.15 KB 0644
htmlm4.vim File 874 B 0644
htmlos.vim File 8.54 KB 0644
ia64.vim File 10.68 KB 0644
ibasic.vim File 6.87 KB 0644
icemenu.vim File 838 B 0644
icon.vim File 7.12 KB 0644
idl.vim File 19.13 KB 0644
idlang.vim File 13.5 KB 0644
indent.vim File 6.98 KB 0644
inform.vim File 19.3 KB 0644
initex.vim File 18.76 KB 0644
initng.vim File 3.32 KB 0644
inittab.vim File 2.76 KB 0644
ipfilter.vim File 1.68 KB 0644
ishd.vim File 26.78 KB 0644
iss.vim File 5.24 KB 0644
ist.vim File 2.39 KB 0644
jal.vim File 8.99 KB 0644
jam.vim File 26.48 KB 0644
jargon.vim File 1006 B 0644
java.vim File 17.11 KB 0644
javacc.vim File 2.65 KB 0644
javascript.vim File 5.34 KB 0644
jess.vim File 6.53 KB 0644
jgraph.vim File 1.58 KB 0644
jovial.vim File 4.01 KB 0644
jproperties.vim File 5.75 KB 0644
jsp.vim File 3.05 KB 0644
kconfig.vim File 35.29 KB 0644
kix.vim File 6.42 KB 0644
kscript.vim File 2.31 KB 0644
kwt.vim File 2.85 KB 0644
lace.vim File 4.31 KB 0644
latte.vim File 3.9 KB 0644
ld.vim File 2.82 KB 0644
ldapconf.vim File 12.98 KB 0644
ldif.vim File 1.19 KB 0644
lex.vim File 6.61 KB 0644
lftp.vim File 7.28 KB 0644
lhaskell.vim File 4.88 KB 0644
libao.vim File 624 B 0644
lifelines.vim File 6.75 KB 0644
lilo.vim File 10.42 KB 0644
limits.vim File 1.27 KB 0644
liquid.vim File 6.04 KB 0644
lisp.vim File 35.56 KB 0644
lite.vim File 5.08 KB 0644
litestep.vim File 6.51 KB 0644
loginaccess.vim File 4.09 KB 0644
logindefs.vim File 7.35 KB 0644
logtalk.vim File 15.91 KB 0644
lotos.vim File 2.7 KB 0644
lout.vim File 4.68 KB 0644
lpc.vim File 22.84 KB 0644
lprolog.vim File 4.25 KB 0644
lscript.vim File 12.19 KB 0644
lsl.vim File 15.43 KB 0644
lss.vim File 5.14 KB 0644
lua.vim File 14.07 KB 0644
lynx.vim File 6.42 KB 0644
m4.vim File 2.99 KB 0644
mail.vim File 5.92 KB 0644
mailaliases.vim File 2.69 KB 0644
mailcap.vim File 1.11 KB 0644
make.vim File 6.34 KB 0644
mallard.vim File 1.69 KB 0644
man.vim File 1.99 KB 0644
manconf.vim File 4.23 KB 0644
manual.vim File 803 B 0644
maple.vim File 27.95 KB 0644
markdown.vim File 7.11 KB 0644
masm.vim File 15.7 KB 0644
mason.vim File 3.39 KB 0644
master.vim File 1.4 KB 0644
matlab.vim File 4.23 KB 0644
maxima.vim File 18.71 KB 0644
mel.vim File 3.65 KB 0644
messages.vim File 2.49 KB 0644
mf.vim File 8.05 KB 0644
mgl.vim File 3.87 KB 0644
mgp.vim File 2.34 KB 0644
mib.vim File 2.63 KB 0644
mma.vim File 11.69 KB 0644
mmix.vim File 5.12 KB 0644
mmp.vim File 1.63 KB 0644
modconf.vim File 1.37 KB 0644
model.vim File 1.43 KB 0644
modsim3.vim File 3.86 KB 0644
modula2.vim File 3.54 KB 0644
modula3.vim File 2.37 KB 0644
monk.vim File 10.44 KB 0644
moo.vim File 9.03 KB 0644
mp.vim File 5.62 KB 0644
mplayerconf.vim File 4.29 KB 0644
mrxvtrc.vim File 9.38 KB 0644
msidl.vim File 3.74 KB 0644
msmessages.vim File 6.26 KB 0644
msql.vim File 2.73 KB 0644
mupad.vim File 15.41 KB 0644
mush.vim File 13.15 KB 0644
muttrc.vim File 79.17 KB 0644
mysql.vim File 17.46 KB 0644
named.vim File 10.17 KB 0644
nanorc.vim File 10.36 KB 0644
nasm.vim File 24.98 KB 0644
nastran.vim File 8.53 KB 0644
natural.vim File 7.11 KB 0644
ncf.vim File 13.35 KB 0644
netrc.vim File 1.88 KB 0644
netrw.vim File 5.71 KB 0644
ninja.vim File 2.5 KB 0644
nosyntax.vim File 755 B 0644
nqc.vim File 14.05 KB 0644
nroff.vim File 7.85 KB 0644
nsis.vim File 9.64 KB 0644
obj.vim File 3.09 KB 0644
objc.vim File 29.72 KB 0644
objcpp.vim File 786 B 0644
ocaml.vim File 13.5 KB 0644
occam.vim File 4.37 KB 0644
omnimark.vim File 6.69 KB 0644
openroad.vim File 14.01 KB 0644
opl.vim File 4.42 KB 0644
ora.vim File 26.82 KB 0644
pamconf.vim File 5.4 KB 0644
papp.vim File 4.03 KB 0644
pascal.vim File 14.97 KB 0644
passwd.vim File 2.37 KB 0644
pcap.vim File 1.92 KB 0644
pccts.vim File 4.44 KB 0644
pdf.vim File 3.46 KB 0644
perl.vim File 35.71 KB 0644
perl6.vim File 72.67 KB 0644
pf.vim File 2.71 KB 0644
pfmain.vim File 80.89 KB 0644
php.vim File 78.62 KB 0644
phtml.vim File 151 B 0644
pic.vim File 3.63 KB 0644
pike.vim File 6.55 KB 0644
pilrc.vim File 5.38 KB 0644
pine.vim File 15.52 KB 0644
pinfo.vim File 5.16 KB 0644
plaintex.vim File 10.05 KB 0644
pli.vim File 13.2 KB 0644
plm.vim File 5.57 KB 0644
plp.vim File 1.43 KB 0644
plsql.vim File 12.92 KB 0644
po.vim File 6.21 KB 0644
pod.vim File 7.49 KB 0644
postscr.vim File 45.45 KB 0644
pov.vim File 9.13 KB 0644
povini.vim File 3.69 KB 0644
ppd.vim File 1.23 KB 0644
ppwiz.vim File 3.1 KB 0644
prescribe.vim File 2.72 KB 0644
privoxy.vim File 3.5 KB 0644
procmail.vim File 2.35 KB 0644
progress.vim File 31.38 KB 0644
prolog.vim File 4.45 KB 0644
promela.vim File 1.78 KB 0644
proto.vim File 2.86 KB 0644
protocols.vim File 1.38 KB 0644
psf.vim File 4.52 KB 0644
ptcap.vim File 4.35 KB 0644
purifylog.vim File 3.54 KB 0644
pyrex.vim File 2 KB 0644
python.vim File 11.61 KB 0644
qf.vim File 596 B 0644
quake.vim File 8.34 KB 0644
r.vim File 7.45 KB 0644
racc.vim File 5.48 KB 0644
radiance.vim File 7.42 KB 0644
ratpoison.vim File 17.19 KB 0644
rc.vim File 10.19 KB 0644
rcs.vim File 2.47 KB 0644
rcslog.vim File 970 B 0644
readline.vim File 16.24 KB 0644
rebol.vim File 7.37 KB 0644
redif.vim File 85.91 KB 0644
registry.vim File 3.48 KB 0644
remind.vim File 2.71 KB 0644
resolv.vim File 3.1 KB 0644
reva.vim File 7.58 KB 0644
rexx.vim File 15.23 KB 0644
rhelp.vim File 9.84 KB 0644
rib.vim File 2.38 KB 0644
rnc.vim File 2.2 KB 0644
rng.vim File 817 B 0644
rnoweb.vim File 2.01 KB 0644
robots.vim File 1.8 KB 0644
rpcgen.vim File 2.11 KB 0644
rpl.vim File 25.38 KB 0644
rst.vim File 8.06 KB 0644
rtf.vim File 2.68 KB 0644
ruby.vim File 27.76 KB 0644
samba.vim File 6.37 KB 0644
sas.vim File 11.74 KB 0644
sass.vim File 5.6 KB 0644
sather.vim File 3.74 KB 0644
scheme.vim File 17.25 KB 0644
scilab.vim File 3.44 KB 0644
screen.vim File 8.32 KB 0644
scss.vim File 409 B 0644
sd.vim File 2.49 KB 0644
sdc.vim File 1.36 KB 0644
sdl.vim File 6.87 KB 0644
sed.vim File 5.23 KB 0644
sendpr.vim File 1000 B 0644
sensors.vim File 1.47 KB 0644
services.vim File 1.77 KB 0644
setserial.vim File 5.09 KB 0644
sgml.vim File 8.75 KB 0644
sgmldecl.vim File 2.42 KB 0644
sgmllnx.vim File 2.18 KB 0644
sh.vim File 38.15 KB 0644
sicad.vim File 18.5 KB 0644
sieve.vim File 1.62 KB 0644
simula.vim File 3.59 KB 0644
sinda.vim File 4 KB 0644
sindacmp.vim File 1.64 KB 0644
sindaout.vim File 2.36 KB 0644
sisu.vim File 19.91 KB 0644
skill.vim File 25.5 KB 0644
sl.vim File 4.32 KB 0644
slang.vim File 3.55 KB 0644
slice.vim File 3.22 KB 0644
slpconf.vim File 11.5 KB 0644
slpreg.vim File 5.21 KB 0644
slpspi.vim File 1.14 KB 0644
slrnrc.vim File 12.85 KB 0644
slrnsc.vim File 3.45 KB 0644
sm.vim File 3.21 KB 0644
smarty.vim File 3.02 KB 0644
smcl.vim File 11.75 KB 0644
smil.vim File 5.84 KB 0644
smith.vim File 1.17 KB 0644
sml.vim File 9.41 KB 0644
snnsnet.vim File 2.63 KB 0644
snnspat.vim File 2.37 KB 0644
snnsres.vim File 2.09 KB 0644
snobol4.vim File 5.48 KB 0644
spec.vim File 12.39 KB 0644
specman.vim File 7.47 KB 0644
spice.vim File 2.57 KB 0644
splint.vim File 15.76 KB 0644
spup.vim File 13.95 KB 0644
spyce.vim File 4.5 KB 0644
sql.vim File 1.19 KB 0644
sqlanywhere.vim File 41.04 KB 0644
sqlforms.vim File 6.97 KB 0644
sqlhana.vim File 10.86 KB 0644
sqlinformix.vim File 6.14 KB 0644
sqlj.vim File 3.14 KB 0644
sqloracle.vim File 2.9 KB 0644
sqr.vim File 13.86 KB 0644
squid.vim File 7.15 KB 0644
sshconfig.vim File 8.69 KB 0644
sshdconfig.vim File 8.45 KB 0644
st.vim File 3.06 KB 0644
stata.vim File 26.41 KB 0644
stp.vim File 5.65 KB 0644
strace.vim File 2.15 KB 0644
sudoers.vim File 21.52 KB 0644
svg.vim File 436 B 0644
svn.vim File 1.64 KB 0644
syncolor.vim File 4 KB 0644
synload.vim File 1.86 KB 0644
syntax.vim File 1.2 KB 0644
sysctl.vim File 1.11 KB 0644
tads.vim File 7.01 KB 0644
tags.vim File 1.54 KB 0644
tak.vim File 3.27 KB 0644
takcmp.vim File 1.94 KB 0644
takout.vim File 2.39 KB 0644
tar.vim File 373 B 0644
taskdata.vim File 1.27 KB 0644
taskedit.vim File 1.2 KB 0644
tasm.vim File 5.91 KB 0644
tcl.vim File 17.01 KB 0644
tcsh.vim File 12.96 KB 0644
terminfo.vim File 4.68 KB 0644
tex.vim File 61.29 KB 0644
texinfo.vim File 25.25 KB 0644
texmf.vim File 2.41 KB 0644
tf.vim File 7.07 KB 0644
tidy.vim File 6.38 KB 0644
tilde.vim File 1.5 KB 0644
tli.vim File 2 KB 0644
tpp.vim File 3.83 KB 0644
trasys.vim File 5.34 KB 0644
treetop.vim File 3.57 KB 0644
trustees.vim File 1.5 KB 0644
tsalt.vim File 8.43 KB 0644
tsscl.vim File 5.36 KB 0644
tssgm.vim File 3.09 KB 0644
tssop.vim File 2.13 KB 0644
tt2.vim File 7.73 KB 0644
tt2html.vim File 516 B 0644
tt2js.vim File 522 B 0644
uc.vim File 6.76 KB 0644
udevconf.vim File 1.19 KB 0644
udevperm.vim File 2.34 KB 0644
udevrules.vim File 6.79 KB 0644
uil.vim File 2.93 KB 0644
updatedb.vim File 1.18 KB 0644
upstart.vim File 3.07 KB 0644
upstreamdat.vim File 13.5 KB 0644
upstreaminstalllog.vim File 971 B 0644
upstreamlog.vim File 2.47 KB 0644
usserverlog.vim File 2.96 KB 0644
usw2kagtlog.vim File 2.13 KB 0644
valgrind.vim File 2.99 KB 0644
vb.vim File 20.14 KB 0644
vera.vim File 19.34 KB 0644
verilog.vim File 5.4 KB 0644
verilogams.vim File 6.4 KB 0644
vgrindefs.vim File 1.19 KB 0644
vhdl.vim File 6.59 KB 0644
vim.vim File 62.55 KB 0644
viminfo.vim File 1.1 KB 0644
virata.vim File 11.6 KB 0644
vmasm.vim File 8.68 KB 0644
voscm.vim File 6.81 KB 0644
vrml.vim File 12.91 KB 0644
vsejcl.vim File 1.36 KB 0644
wdiff.vim File 1.12 KB 0644
web.vim File 1.24 KB 0644
webmacro.vim File 3.39 KB 0644
wget.vim File 3.87 KB 0644
whitespace.vim File 357 B 0644
winbatch.vim File 12.25 KB 0644
wml.vim File 6.12 KB 0644
wsh.vim File 1.21 KB 0644
wsml.vim File 5.59 KB 0644
wvdial.vim File 1.07 KB 0644
xbl.vim File 568 B 0644
xdefaults.vim File 6.11 KB 0644
xf86conf.vim File 14.58 KB 0644
xhtml.vim File 186 B 0644
xinetd.vim File 13.86 KB 0644
xkb.vim File 3.38 KB 0644
xmath.vim File 10.85 KB 0644
xml.vim File 8.41 KB 0644
xmodmap.vim File 45.41 KB 0644
xpm.vim File 4.55 KB 0644
xpm2.vim File 4.87 KB 0644
xquery.vim File 7.02 KB 0644
xs.vim File 214.6 KB 0644
xsd.vim File 2.08 KB 0644
xslt.vim File 2.12 KB 0644
xxd.vim File 1.16 KB 0644
yacc.vim File 5.41 KB 0644
yaml.vim File 8.93 KB 0644
z8a.vim File 3.2 KB 0644
zimbu.vim File 4.69 KB 0644
zsh.vim File 8.71 KB 0644