dotfiles

My dotfiles.
Log | Files | Refs | LICENSE

comment_todo.jsf (629B)


      1 # JOE syntax highlight file for highlighting TODO: FIXME: XXX: etc
      2 # by Christian Nicolai (http://mycrobase.de)
      3 
      4 =Comment 	
      5 =TODO		+Comment
      6 
      7 .subr comment_todo
      8 # initial state
      9 :comment_todo_init Comment comment
     10 	*		comment_todo_guess	buffer
     11 
     12 # highlight common TODO labels
     13 :comment_todo_guess Comment comment
     14 	*		comment_todo_unknown	noeat strings
     15 	"BUG"		comment_todo
     16 	"FIXME"		comment_todo
     17 	"HACK"		comment_todo
     18 	"NOTE"		comment_todo
     19 	"TODO"		comment_todo
     20 	"XXX"		comment_todo
     21 done
     22 	"A-Z"		comment_todo_guess
     23 
     24 :comment_todo_unknown Comment comment
     25 	*		NULL		noeat return
     26 
     27 :comment_todo TODO comment
     28 	*		NULL		noeat return
     29 .end