" Vim syntax file " comment.vim - trivial vim syntax file for text with string-initiated comments " Steve Kinzler, kinzler@cs.indiana.edu, Dec 93 " http://www.cs.indiana.edu/~kinzler/home.html#vi " Language: generic text file containing abitrary string-initiated comments " Maintainer: Steve Kinzler " URL: http://www.cs.indiana.edu/~kinzler/home.html#vi " Last change: Dec 98 syn clear syn keyword commentTodo contained TODO TBD FIXME exe " syn match commentComment '".comment.".*$' contains=commentTodo" if !exists("did_comment_syntax_inits") let did_comment_syntax_inits=1 hi link commentComment Comment hi link commentTodo Todo endif let b:current_syntax = "comment"