From 102de76b6832d9fbff5e7b7767d143c0fafea263 Mon Sep 17 00:00:00 2001 From: Builder's Brewery Date: Tue, 18 Feb 2014 17:33:52 +0100 Subject: [PATCH] changed regex order --- lib/ace/mode/lsl_highlight_rules.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ace/mode/lsl_highlight_rules.js b/lib/ace/mode/lsl_highlight_rules.js index a58bd2bb..08d6f2df 100644 --- a/lib/ace/mode/lsl_highlight_rules.js +++ b/lib/ace/mode/lsl_highlight_rules.js @@ -116,15 +116,15 @@ function LSLHighlightRules() { token : "constant.character.escape.lsl", regex : /\\[tn"\\]/ }, - { - token : "invalid.illegal.constant.character.escape.lsl", - regex : /\\./ - }, { token : "string.quoted.double.end.lsl", regex : /"/, next : "start" }, + { + token : "invalid.illegal.constant.character.escape.lsl", + regex : /\\./ + }, { token : "string.quoted.double.lsl", regex : ".+"