dotfiles

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

comment_todo.jsf (619B)


      1 # JOE syntax highlight file for highlighting TODO: FIXME: XXX: etc
      2 # by Christian Nicolai (http://mycrobase.de)
      3 
      4 =Comment 	green
      5 =CommentLabel	bold green
      6 
      7 .subr comment_todo
      8 # initial state
      9 :comment_todo_init Comment
     10 	*		comment_todo_guess	buffer
     11 
     12 # highlight common TODO labels
     13 :comment_todo_guess 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
     25 	*		NULL		noeat return
     26 
     27 :comment_todo CommentLabel
     28 	*		NULL		noeat return
     29 .end