Merge pull request #1404 from rgriffith/velocity_mode_lt_operator_improvements

Fixed another regex for keyword.operator to include <
This commit is contained in:
Harutyun Amirjanyan 2013-04-30 04:34:56 -07:00
commit 855426e2f5

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 : "[[({]"