" Vim syntax file " Language: Nasal (FlightGear) " Maintainer: Melchior FRANZ " URL: http://members.aon.at/mfranz/nasal.vim " Last Change: 2005 Apr 25 " $Id$ " ________________________________CUSTOMIZATION______________________________ " " :let nasal_no_fgfs=1 " turn off FlightGear extensions " :hi nasalStatement ctermfg=Green " change statement color " ___________________________________________________________________________ " for use in ~/.vimrc drop the initial colon " type ":help new-filetype" in vim for installation instructions if !exists("main_syntax") if version < 600 syntax clear elseif exists("b:current_syntax") finish endif let main_syntax = 'nasal' endif syn keyword nasalCommentTodo TODO FIXME XXX contained syn match nasalComment "#.*$" contains=nasalCommentTodo syn region nasalStringS start=+'+ skip=+\\'+ end=+'+ contains=nasalSpecialS syn region nasalStringD start=+"+ skip=+\\"+ end=+"+ contains=nasalSpecialD,nasalSpecial syn match nasalSpecialS contained "\\'" syn match nasalSpecialD contained "\\[\\rnt\"]" syn match nasalSpecial contained "\\x[[:xdigit:]][[:xdigit:]]" syn match nasalError "``\=" syn match nasalError "`\\[^`\\rnt]`" syn match nasalError "`[^`][^`]\+`" syn match nasalCharConstant "`[^`\\]`" syn match nasalCharConstant "`\\[`\\rnt]`" syn match nasalCharConstant "`\\x[[:xdigit:]][[:xdigit:]]`" syn match nasalNumber "-\=\<\d\+\>" syn match nasalNumber "\.\d\+\([eE][+-]\=\d\+\)\=\>" syn match nasalNumber "\<\d\+\.\([eE][+-]\=\d\+\)\=\>" syn match nasalNumber "\<\d\+\.\d\+\([eE][+-]\=\d\+\)\=\>" syn keyword nasalStatement func return var syn keyword nasalConditional if elsif else syn keyword nasalRepeat while for foreach forindex syn keyword nasalBranch break continue syn keyword nasalVar me arg parents syn keyword nasalType nil syn keyword nasalOperator and or syn match nasalFoo "\~" syn match nasalFunction display "\" syn keyword nasalFunction size keys append pop setsize subvec delete int num streq substr syn keyword nasalFunction chr typeof compile call die sprintf caller closure find cmp syn keyword nasalFunction split rand bind sort ghosttype " math lib syn match nasalFunction "\" syn match nasalConstant "\" " io lib syn match nasalFunction "\" syn match nasalVar "\" " bits lib syn match nasalFunction "\" " FlightGear specific commands if !exists("nasal_no_fgfs") syn keyword nasalFGFSFunction getprop setprop print _fgcommand settimer _setlistener _cmdarg syn keyword nasalFGFSFunction _interpolate rand srand directory removelistener systime syn keyword nasalFGFSFunction geodtocart carttogeod geodinfo parsexml airportinfo syn keyword nasalGlobalsFunction isa fgcommand cmdarg abs interpolate setlistener defined printlog syn keyword nasalPropsFunction getType getName getIndex getValue setValue setIntValue syn keyword nasalPropsFunction setBoolValue setDoubleValue getParent getChild getChildren syn keyword nasalPropsFunction getAttribute setAttribute syn keyword nasalPropsFunction removeChild removeChildren getNode syn keyword nasalPropsFunction getPath getBoolValue setValues getValues syn match nasalPropsFunction "\\.\=" endif syn sync fromstart syn sync maxlines=100 syn match nasalParenError ")" syn match nasalBrackError "]" syn match nasalBraceError "}" syn region nasalEncl transparent matchgroup=nasalParenEncl start="(" matchgroup=nasalParenEncl end=")" contains=ALLBUT,nasalParenError syn region nasalEncl transparent matchgroup=nasalBrackEncl start="\[" matchgroup=nasalBrackEncl end="\]" contains=ALLBUT,nasalBrackError syn region nasalEncl transparent matchgroup=nasalBraceEncl start="{" matchgroup=nasalBraceEncl end="}" contains=ALLBUT,nasalBraceError if version >= 508 || !exists("did_nasal_syn_inits") if version < 508 let did_nasal_syn_inits = 1 command -nargs=+ HiLink hi link else command -nargs=+ HiLink hi def link endif HiLink nasalComment Comment HiLink nasalCommentTodo Todo HiLink nasalSpecial Special HiLink nasalSpecialS Special HiLink nasalSpecialD Special HiLink nasalStringS String HiLink nasalStringD String HiLink nasalNumber Number HiLink nasalConditional Conditional HiLink nasalVar Macro HiLink nasalType Type HiLink nasalConstant Constant HiLink nasalCharConstant Type HiLink nasalFoo NonText HiLink nasalRepeat Repeat HiLink nasalBranch Conditional HiLink nasalOperator Operator HiLink nasalStatement Statement HiLink nasalFunction Function HiLink nasalFGFSFunction Function HiLink nasalGlobalsFunction Function HiLink nasalPropsFunction Function HiLink nasalError Error HiLink nasalParenError nasalError HiLink nasalBrackError nasalError HiLink nasalBraceError nasalError delcommand HiLink endif let b:current_syntax = "nasal" if main_syntax == 'nasal' unlet main_syntax endif " vim: ts=8