dotfiles

My dotfiles.
Log | Files | Refs | LICENSE

lisp.jsf (393B)


      1 # JOE syntax highlight file for LISP
      2 
      3 # Needs lots of work...
      4 
      5 =Idle
      6 =Comment
      7 =String		+Constant
      8 =StringEscape	+Escape
      9 
     10 :idle Idle
     11 	*		idle
     12 	";"		comment		recolor=-1
     13 	"\""		string		recolor=-1
     14 
     15 :comment Comment comment
     16 	*		comment
     17 	"\n"		idle
     18 
     19 :string String string
     20 	*		string
     21 	"\""		idle
     22 	"\\"		string_escape	recolor=-1
     23 
     24 :string_escape StringEscape string
     25 	*		string
     26 	"\n"		string		recolor=-2