fix highlighting of closing brace
This commit is contained in:
parent
3812b20546
commit
00a640e473
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ define(function(require, exports, module) {
|
|||
}, {
|
||||
regex: "}",
|
||||
token: function(val, start, stack) {
|
||||
return stack[1] == "qqstring" ? "constant.language.escape" : "text"
|
||||
return stack[1] && stack[1].charAt(0) == "q" ? "constant.language.escape" : "text";
|
||||
},
|
||||
next: "pop"
|
||||
}],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue