Skip to content

Commit ba0c391

Browse files
committed
fixes
1 parent 5397977 commit ba0c391

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

lib/ace/mode/latte_highlight_rules.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ define(function(require, exports, module) {
3232
"use strict";
3333

3434
var oop = require("../lib/oop");
35-
var lang = require("../lib/lang");
3635
var HtmlHighlightRules = require("./html_highlight_rules").HtmlHighlightRules;
3736
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
3837

@@ -102,7 +101,7 @@ var LatteHighlightRules = function() {
102101
regex : "/?>",
103102
next: "tag_stuff"
104103
}, {
105-
include : "latte-content",
104+
include : "latte-content"
106105
}]
107106
}, {
108107
token : "empty",
@@ -180,7 +179,7 @@ var LatteHighlightRules = function() {
180179
regex : "[\\])}]"
181180
}, {
182181
token : "keyword.operator",
183-
regex : "::|=>|->|\\?->|\\?\\?->|\\+\\+|--|<<|>>|<=>|<=|>=|===|!==|==|!=|<>|&&|\\|\\||\\?\\?|\\?>|\\*\\*|\\.\\.\\.|[^'\"]", // =>, any char except quotes
182+
regex : "::|=>|->|\\?->|\\?\\?->|\\+\\+|--|<<|>>|<=>|<=|>=|===|!==|==|!=|<>|&&|\\|\\||\\?\\?|\\?>|\\*\\*|\\.\\.\\.|[^'\"]" // =>, any char except quotes
184183
}
185184
];
186185

0 commit comments

Comments
 (0)