dotfiles

My dotfiles.
Log | Files | Refs | LICENSE

ant.jsf (511B)


      1 # JOE syntax highlight file for Ant's build scripts
      2 # by Christian Nicolai (http://mycrobase.de)
      3 # Refactored to XML by John J. Jordan
      4 
      5 # http://ant.apache.org/
      6 
      7 =Idle
      8 =String		+Constant
      9 =StringEscape	+Escape +String
     10 
     11 :init Idle
     12 	*		idle		noeat call=xml.xml(ant)
     13 
     14 .subr maybe_antvar
     15 # initial state
     16 :maybe_antvar String string
     17 	*		NULL		return
     18 	"{"		antvar		recolor=-2
     19 
     20 :antvar StringEscape string
     21 	*		antvar
     22 	"}"		NULL		return
     23 .end
     24 
     25 .subr antvar
     26 
     27 :antvar StringEscape string
     28 	*		antvar
     29 	"}"		NULL		return
     30 .end