0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00
vim/runtime/syntax/mma.vim

332 lines
12 KiB
VimL
Raw Normal View History

2004-06-13 20:20:40 +00:00
" Vim syntax file
" Language: Mathematica
2005-05-18 22:24:46 +00:00
" Maintainer: steve layland <layland@wolfram.com>
" Last Change: 2012 Feb 03 by Thilo Six
2006-04-14 20:42:25 +00:00
" Source: http://members.wri.com/layland/vim/syntax/mma.vim
" http://vim.sourceforge.net/scripts/script.php?script_id=1273
2010-01-06 20:54:52 +01:00
" Id: $Id: mma.vim,v 1.4 2006/04/14 20:40:38 vimboss Exp $
2005-05-18 22:24:46 +00:00
" NOTE:
"
2005-05-18 22:24:46 +00:00
" Empty .m files will automatically be presumed as Matlab files
" unless you have the following in your .vimrc:
"
" let filetype_m="mma"
"
" I also recommend setting the default 'Comment' hilighting to something
" other than the color used for 'Function', since both are plentiful in
" most mathematica files, and they are often the same color (when using
2005-05-19 21:08:39 +00:00
" background=dark).
2005-05-18 22:24:46 +00:00
"
" Credits:
" o Original Mathematica syntax version written by
" Wolfgang Waltenberger <wwalten@ben.tuwien.ac.at>
" o Some ideas like the CommentStar,CommentTitle were adapted
" from the Java vim syntax file by Claudio Fleiner. Thanks!
" o Everything else written by steve <layland@wolfram.com>
"
" Bugs:
" o Vim 6.1 didn't really have support for character classes
2006-04-14 20:42:25 +00:00
" of other named character classes. For example, [\a\d]
" didn't work. Therefore, a lot of this code uses explicit
" character classes instead: [0-9a-zA-Z]
2006-04-14 20:42:25 +00:00
"
2005-05-18 22:24:46 +00:00
" TODO:
" folding
" fix nesting
" finish populating popular symbols
2004-06-13 20:20:40 +00:00
if version < 600
syntax clear
elseif exists("b:current_syntax")
2005-05-18 22:24:46 +00:00
finish
2004-06-13 20:20:40 +00:00
endif
let s:cpo_save = &cpo
set cpo&vim
2005-05-18 22:24:46 +00:00
" Group Definitions:
syntax cluster mmaNotes contains=mmaTodo,mmaFixme
syntax cluster mmaComments contains=mmaComment,mmaFunctionComment,mmaItem,mmaFunctionTitle,mmaCommentStar
syntax cluster mmaCommentStrings contains=mmaLooseQuote,mmaCommentString,mmaUnicode
syntax cluster mmaStrings contains=@mmaCommentStrings,mmaString
syntax cluster mmaTop contains=mmaOperator,mmaGenericFunction,mmaPureFunction,mmaVariable
2004-06-13 20:20:40 +00:00
2005-05-18 22:24:46 +00:00
" Predefined Constants:
" to list all predefined Symbols would be too insane...
" it's probably smarter to define a select few, and get the rest from
" context if absolutely necessary.
" TODO - populate this with other often used Symbols
2004-06-13 20:20:40 +00:00
2005-05-18 22:24:46 +00:00
" standard fixed symbols:
syntax keyword mmaVariable True False None Automatic All Null C General
2004-06-13 20:20:40 +00:00
2005-05-18 22:24:46 +00:00
" mathematical constants:
syntax keyword mmaVariable Pi I E Infinity ComplexInfinity Indeterminate GoldenRatio EulerGamma Degree Catalan Khinchin Glaisher
2005-05-18 22:24:46 +00:00
" stream data / atomic heads:
syntax keyword mmaVariable Byte Character Expression Number Real String Word EndOfFile Integer Symbol
" sets:
syntax keyword mmaVariable Integers Complexes Reals Booleans Rationals
" character classes:
syntax keyword mmaPattern DigitCharacter LetterCharacter WhitespaceCharacter WordCharacter EndOfString StartOfString EndOfLine StartOfLine WordBoundary
" SelectionMove directions/units:
syntax keyword mmaVariable Next Previous After Before Character Word Expression TextLine CellContents Cell CellGroup EvaluationCell ButtonCell GeneratedCell Notebook
syntax keyword mmaVariable CellTags CellStyle CellLabel
" TableForm positions:
syntax keyword mmaVariable Above Below Left Right
" colors:
syntax keyword mmaVariable Black Blue Brown Cyan Gray Green Magenta Orange Pink Purple Red White Yellow
" function attributes
syntax keyword mmaVariable Protected Listable OneIdentity Orderless Flat Constant NumericFunction Locked ReadProtected HoldFirst HoldRest HoldAll HoldAllComplete SequenceHold NHoldFirst NHoldRest NHoldAll Temporary Stub
2005-05-18 22:24:46 +00:00
2005-05-19 21:08:39 +00:00
" Comment Sections:
" this:
" :that:
2006-04-14 20:42:25 +00:00
syntax match mmaItem "\%(^[( |*\t]*\)\@<=\%(:\+\|\w\)\w\+\%( \w\+\)\{0,3}:" contained contains=@mmaNotes
2005-05-18 22:24:46 +00:00
" Comment Keywords:
syntax keyword mmaTodo TODO NOTE HEY contained
syntax match mmaTodo "X\{3,}" contained
syntax keyword mmaFixme FIX[ME] FIXTHIS BROKEN contained
2006-04-14 20:42:25 +00:00
syntax match mmaFixme "BUG\%( *\#\=[0-9]\+\)\=" contained
2005-05-18 22:24:46 +00:00
" yay pirates...
syntax match mmaFixme "\%(Y\=A\+R\+G\+\|GRR\+\|CR\+A\+P\+\)\%(!\+\)\=" contained
2005-05-19 21:08:39 +00:00
" EmPHAsis:
" this unnecessary, but whatever :)
2006-04-14 20:42:25 +00:00
syntax match mmaemPHAsis "\%(^\|\s\)\([_/]\)[a-zA-Z0-9]\+\%([- \t':]\+[a-zA-Z0-9]\+\)*\1\%(\s\|$\)" contained contains=mmaemPHAsis
syntax match mmaemPHAsis "\%(^\|\s\)(\@<!\*[a-zA-Z0-9]\+\%([- \t':]\+[a-zA-Z0-9]\+\)*)\@!\*\%(\s\|$\)" contained contains=mmaemPHAsis
2005-05-18 22:24:46 +00:00
2005-05-19 21:08:39 +00:00
" Regular Comments:
2005-05-18 22:24:46 +00:00
" (* *)
" allow nesting (* (* *) *) even though the frontend
" won't always like it.
syntax region mmaComment start=+(\*+ end=+\*)+ skipempty contains=@mmaNotes,mmaItem,@mmaCommentStrings,mmaemPHAsis,mmaComment
" Function Comments:
" just like a normal comment except the first sentance is Special ala Java
" (** *)
" TODO - fix this for nesting, or not...
syntax region mmaFunctionComment start="(\*\*\+" end="\*\+)" contains=@mmaNotes,mmaItem,mmaFunctionTitle,@mmaCommentStrings,mmaemPHAsis,mmaComment
syntax region mmaFunctionTitle contained matchgroup=mmaFunctionComment start="\%((\*\*[ *]*\)" matchgroup=mmaFunctionTitle keepend end=".[.!-]\=\s*$" end="[.!-][ \t\r<&]"me=e-1 end="\%(\*\+)\)\@=" contained contains=@mmaNotes,mmaItem,mmaCommentStar
" catch remaining (**********)'s
syntax match mmaComment "(\*\*\+)"
" catch preceding *
syntax match mmaCommentStar "^\s*\*\+" contained
2005-05-19 21:08:39 +00:00
" Variables:
" Dollar sign variables
2006-04-14 20:42:25 +00:00
syntax match mmaVariable "\$\a\+[0-9a-zA-Z$]*"
" Preceding and Following Contexts
syntax match mmaVariable "`[a-zA-Z$]\+[0-9a-zA-Z$]*" contains=mmaVariable
syntax match mmaVariable "[a-zA-Z$]\+[0-9a-zA-Z$]*`" contains=mmaVariable
2005-05-19 21:08:39 +00:00
" Strings:
" "string"
" 'string' is not accepted (until literal strings are supported!)
syntax region mmaString start=+\\\@<!"+ skip=+\\\@<!\\\%(\\\\\)*"+ end=+"+
syntax region mmaCommentString oneline start=+\\\@<!"+ skip=+\\\@<!\\\%(\\\\\)*"+ end=+"+ contained
2005-05-18 22:24:46 +00:00
" Patterns:
" Each pattern marker below can be Blank[] (_), BlankSequence[] (__)
" or BlankNullSequence[] (___). Most examples below can also be
2005-05-18 22:24:46 +00:00
" combined, for example Pattern tests with Default values.
"
2005-05-18 22:24:46 +00:00
" _Head Anonymous patterns
" name_Head
2005-05-18 22:24:46 +00:00
" name:(_Head|_Head2) Named patterns
"
2005-05-18 22:24:46 +00:00
" _Head : val
" name:_Head:val Default values
"
" _Head?testQ,
2005-05-18 22:24:46 +00:00
" _Head?(test[#]&) Pattern tests
"
" name_Head/;test[name] Conditionals
"
2005-05-18 22:24:46 +00:00
" _Head:. Predefined Default
"
" .. ... Pattern Repeat
2005-05-18 22:24:46 +00:00
syntax match mmaPatternError "\%(_\{4,}\|)\s*&\s*)\@!\)" contained
"pattern name:
syntax match mmaPattern "[A-Za-z0-9`]\+\s*:\+[=>]\@!" contains=mmaOperator
"pattern default:
syntax match mmaPattern ": *[^ ,]\+[\], ]\@=" contains=@mmaCommentStrings,@mmaTop,mmaOperator
"pattern head/test:
syntax match mmaPattern "[A-Za-z0-9`]*_\+\%(\a\+\)\=\%(?([^)]\+)\|?[^\]},]\+\)\=" contains=@mmaTop,@mmaCommentStrings,mmaPatternError
" Operators:
" /: ^= ^:= UpValue
" /; Conditional
" := = DownValue
" == === ||
" != =!= && Logic
" >= <= < >
" += -= *=
" /= ++ -- Math
" ^*
2005-05-18 22:24:46 +00:00
" -> :> Rules
" @@ @@@ Apply
" /@ //@ Map
" /. //. Replace
" // @ Function application
" <> ~~ String/Pattern join
" ~ infix operator
" . : Pattern operators
syntax match mmaOperator "\%(@\{1,3}\|//[.@]\=\)"
syntax match mmaOperator "\%(/[;:@.]\=\|\^\=:\==\)"
syntax match mmaOperator "\%([-:=]\=>\|<=\=\)"
"syntax match mmaOperator "\%(++\=\|--\=\|[/+-*]=\|[^*]\)"
syntax match mmaOperator "[*+=^.:?-]"
syntax match mmaOperator "\%(\~\~\=\)"
syntax match mmaOperator "\%(=\{2,3}\|=\=!=\|||\=\|&&\|!\)" contains=ALLBUT,mmaPureFunction
2006-04-14 20:42:25 +00:00
" Symbol Tags:
2005-05-19 21:08:39 +00:00
" "SymbolName::item"
2006-04-14 20:42:25 +00:00
"syntax match mmaSymbol "`\=[a-zA-Z$]\+[0-9a-zA-Z$]*\%(`\%([a-zA-Z$]\+[0-9a-zA-Z$]*\)\=\)*" contained
syntax match mmaMessage "`\=\([a-zA-Z$]\+[0-9a-zA-Z$]*\)\%(`\%([a-zA-Z$]\+[0-9a-zA-Z$]*\)\=\)*::\a\+" contains=mmaMessageType
syntax match mmaMessageType "::\a\+"hs=s+2 contained
2005-05-19 21:08:39 +00:00
" Pure Functions:
syntax match mmaPureFunction "#\%(#\|\d\+\)\="
syntax match mmaPureFunction "&"
" Named Functions:
" Since everything is pretty much a function, get this straight
2005-05-19 21:08:39 +00:00
" from context
syntax match mmaGenericFunction "[A-Za-z0-9`]\+\s*\%([@[]\|/:\|/\=/@\)\@=" contains=mmaOperator
syntax match mmaGenericFunction "\~\s*[^~]\+\s*\~"hs=s+1,he=e-1 contains=mmaOperator,mmaBoring
syntax match mmaGenericFunction "//\s*[A-Za-z0-9`]\+"hs=s+2 contains=mmaOperator
" Numbers:
syntax match mmaNumber "\<\%(\d\+\.\=\d*\|\d*\.\=\d\+\)\>"
syntax match mmaNumber "`\d\+\%(\d\@!\.\|\>\)"
2005-05-18 22:24:46 +00:00
" Special Characters:
" \[Name] named character
" \ooo octal
" \.xx 2 digit hex
" \:xxxx 4 digit hex (multibyte unicode)
syntax match mmaUnicode "\\\[\w\+\d*\]"
syntax match mmaUnicode "\\\%(\x\{3}\|\.\x\{2}\|:\x\{4}\)"
" Syntax Errors:
syntax match mmaError "\*)" containedin=ALLBUT,@mmaComments,@mmaStrings
2006-04-14 20:42:25 +00:00
syntax match mmaError "\%([/]{3,}\|[&:|+*?~-]\{3,}\|[.=]\{4,}\|_\@<=\.\{2,}\|`\{2,}\)" containedin=ALLBUT,@mmaComments,@mmaStrings
2005-05-18 22:24:46 +00:00
" Punctuation:
" things that shouldn't really be highlighted, or highlighted
2005-05-18 22:24:46 +00:00
" in they're own group if you _really_ want. :)
" ( ) { }
" TODO - use Delimiter group?
syntax match mmaBoring "[(){}]" contained
2006-04-14 20:42:25 +00:00
" ------------------------------------
" future explorations...
" ------------------------------------
2005-05-18 22:24:46 +00:00
" Function Arguments:
" anything between brackets []
2006-04-14 20:42:25 +00:00
" (fold)
"syntax region mmaArgument start="\[" end="\]" containedin=ALLBUT,@mmaComments,@mmaStrings transparent fold
" Lists:
" (fold)
"syntax region mmaLists start="{" end="}" containedin=ALLBUT,@mmaComments,@mmaStrings transparent fold
" Regions:
" (fold)
"syntax region mmaRegion start="(\*\+[^<]*<!--[^>]*\*\+)" end="--> \*)" containedin=ALLBUT,@mmaStrings transparent fold keepend
" show fold text
set commentstring='(*%s*)'
"set foldtext=MmaFoldText()
"function MmaFoldText()
" let line = getline(v:foldstart)
"
2006-04-14 20:42:25 +00:00
" let lines = v:foldend-v:foldstart+1
"
2006-04-14 20:42:25 +00:00
" let sub = substitute(line, '(\*\+|\*\+)|[-*_]\+', '', 'g')
"
" if match(line, '(\*') != -1
" let lines = lines.' line comment'
" else
" let lines = lines.' lines'
" endif
"
" return v:folddashes.' '.lines.' '.sub
"endf
2006-04-14 20:42:25 +00:00
"this is slow for computing folds, but it does so accurately
syntax sync fromstart
" but this seems to do alright for non fold syntax coloring.
" for folding, however, it doesn't get the nesting right.
" TODO - find sync group for multiline modules? ick...
" sync multi line comments
"syntax sync match syncComments groupthere NONE "\*)"
"syntax sync match syncComments groupthere mmaComment "(\*"
2005-05-18 22:24:46 +00:00
"set foldmethod=syntax
2006-04-14 20:42:25 +00:00
"set foldnestmax=1
"set foldminlines=15
2004-06-13 20:20:40 +00:00
if version >= 508 || !exists("did_mma_syn_inits")
if version < 508
let did_mma_syn_inits = 1
command -nargs=+ HiLink hi link <args>
else
command -nargs=+ HiLink hi def link <args>
endif
" NOTE - the following links are not guaranteed to
" look good under all colorschemes. You might need to
2005-05-18 22:24:46 +00:00
" :so $VIMRUNTIME/syntax/hitest.vim and tweak these to
" look good in yours
2006-04-14 20:42:25 +00:00
2005-05-18 22:24:46 +00:00
HiLink mmaComment Comment
HiLink mmaCommentStar Comment
HiLink mmaFunctionComment Comment
HiLink mmaLooseQuote Comment
HiLink mmaGenericFunction Function
2005-05-19 21:08:39 +00:00
HiLink mmaVariable Identifier
2006-04-14 20:42:25 +00:00
" HiLink mmaSymbol Identifier
2005-05-18 22:24:46 +00:00
HiLink mmaOperator Operator
HiLink mmaPatternOp Operator
HiLink mmaPureFunction Operator
HiLink mmaString String
HiLink mmaCommentString String
HiLink mmaUnicode String
HiLink mmaMessage Type
HiLink mmaNumber Type
HiLink mmaPattern Type
HiLink mmaError Error
HiLink mmaFixme Error
HiLink mmaPatternError Error
HiLink mmaTodo Todo
HiLink mmaemPHAsis Special
HiLink mmaFunctionTitle Special
2006-04-14 20:42:25 +00:00
HiLink mmaMessageType Special
2005-05-18 22:24:46 +00:00
HiLink mmaItem Preproc
2004-06-13 20:20:40 +00:00
delcommand HiLink
endif
let b:current_syntax = "mma"
let &cpo = s:cpo_save
unlet s:cpo_save