dotfiles

My dotfiles.
git clone git://git.ryanmj.xyz/dotfiles.git
Log | Files | Refs | LICENSE

conf.jsf (1336B)


      1 # JOE syntax highlight file for typical UNIX configuration files
      2 
      3 =Idle
      4 =Comment 	green
      5 =String 	cyan
      6 =Escape 	bold red
      7 =Backtick	blue
      8 
      9 :idle Idle
     10 	*		idle
     11 	"#"		comment		recolor=-1
     12 	"\""		string		recolor=-1
     13 	"'"		single		recolor=-1
     14 	"\`"		backtick	recolor=-1
     15 	"\\"		escape		recolor=-1
     16 
     17 :escape Escape
     18 	*		idle
     19 
     20 :comment Comment
     21 	*		comment
     22 	"\n"		idle
     23 
     24 
     25 :string String
     26 	*		string
     27 	"\""		idle
     28 	"\`"		backtick_in_str	recolor=-1
     29 	"\\"		string_escape	recolor=-1
     30 
     31 :string_escape Escape
     32 	*		string
     33 	"\n"		string		recolor=-2
     34 
     35 :backtick_in_str Backtick
     36 	*		backtick_in_str
     37 	"\`"		string
     38 	"\\"		bt_escape_2	recolor=-1
     39 
     40 :bt_escape_2 Escape
     41 	*		backtick_in_str
     42 	"\n"		backtick_in_str	recolor=-2
     43 
     44 
     45 :single String
     46 	*		single
     47 	"'"		idle
     48 	"\\"		single_escape	recolor=-1
     49 
     50 :single_escape Escape
     51 	*		single
     52 	"\n"		single		recolor=-2
     53 
     54 
     55 :backtick Backtick
     56 	*		backtick
     57 	"\`"		idle
     58 	"\""		string_in_bt	recolor=-1
     59 	"'"		single_in_bt	recolor=-1
     60 	"\\"		bt_escape	recolor=-1
     61 
     62 :bt_escape Escape
     63 	*		backtick
     64 	"\n"		backtick	recolor=-2
     65 
     66 
     67 :string_in_bt String
     68 	*		string_in_bt
     69 	"\""		backtick
     70 	"\\"		string_escape_b	recolor=-1
     71 
     72 :string_escape_b Escape
     73 	*		string_in_bt
     74 	"\n"		string_in_bt	recolor=-2
     75 
     76 
     77 :single_in_bt String
     78 	*		single_in_bt
     79 	"'"		backtick
     80 	"\\"		single_escape_b	recolor=-1
     81 
     82 :single_escape_b Escape
     83 	*		single_in_bt
     84 	"\n"		single_in_bt	recolor=-2
     85