removed multi-line strings, ruby doesn't support that type

This commit is contained in:
Heigh Tech LLC 2011-02-02 15:32:24 +01:00
commit 609e136ac5

View file

@ -83,15 +83,9 @@ RubyHighlightRules = function() {
}, {
token : "string", // single line
regex : '["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]'
}, {
token : "string", // multi line string start
regex : '["].*\\\\$'
}, {
token : "string", // single line
regex : "['](?:(?:\\\\.)|(?:[^'\\\\]))*?[']"
}, {
token : "string", // multi line string start
regex : "['].*\\\\$"
}, {
token : "constant.numeric", // hex
regex : "0[xX][0-9a-fA-F]+\\b"