Hello,
I come across a bug related to highlight color. It seems the block comment uses the color of line comment and vice versa.
// ProtoSyntaxHighlighter.java: 83~88
case ProtoLexer.COMMENT:
attrKey = LINE_COMMENT;
break;
case ProtoLexer.LINE_COMMENT:
attrKey = BLOCK_COMMENT;
break;
