From 2bad57137487d4b8f6aaa3079ff6f95160e282c7 Mon Sep 17 00:00:00 2001 From: Ryan Griffith Date: Tue, 30 Apr 2013 07:28:20 -0400 Subject: [PATCH] Fixed another regex for keyword.operator to include < --- lib/ace/mode/velocity_highlight_rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/mode/velocity_highlight_rules.js b/lib/ace/mode/velocity_highlight_rules.js index b0a6201a..07af2f92 100644 --- a/lib/ace/mode/velocity_highlight_rules.js +++ b/lib/ace/mode/velocity_highlight_rules.js @@ -103,7 +103,7 @@ var VelocityHighlightRules = function() { regex : "[a-zA-Z$#][a-zA-Z0-9_]*\\b" }, { token : "keyword.operator", - regex : "!|&|\\*|\\-|\\+|=|!=|<=|>=<|>|&&|\\|\\|" + regex : "!|&|\\*|\\-|\\+|=|!=|<=|>=|<|>|&&|\\|\\|" }, { token : "lparen", regex : "[[({]"