Fixed another regex for keyword.operator to include <

This commit is contained in:
Ryan Griffith 2013-04-30 07:28:20 -04:00
commit 2bad571374

View file

@ -103,7 +103,7 @@ var VelocityHighlightRules = function() {
regex : "[a-zA-Z$#][a-zA-Z0-9_]*\\b"
}, {
token : "keyword.operator",
regex : "!|&|\\*|\\-|\\+|=|!=|<=|>=<|>|&&|\\|\\|"
regex : "!|&|\\*|\\-|\\+|=|!=|<=|>=|<|>|&&|\\|\\|"
}, {
token : "lparen",
regex : "[[({]"