Fixed minor bug in regex highlighting

This commit is contained in:
Eddy Bruel 2010-11-03 18:18:39 +01:00
commit aeb3e63e31

View file

@ -47,7 +47,7 @@ JavaScriptHighlightRules = function() {
next : "comment"
}, {
token : "string.regexp",
regex : "[/](?:(?:\\[(?:\\\\]|[^\\]])+\\])|(?:\\\\/|[^\\]/]))*[/][gimy]*\\s*(?=[).;]|$)"
regex : "[/](?:(?:\\[(?:\\\\]|[^\\]])+\\])|(?:\\\\/|[^\\]/]))*[/][gimy]*\\s*(?=[).,;]|$)"
}, {
token : "string", // single line
regex : '["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]'