Skip to content

Commit

Permalink
removed multi-line strings, ruby doesn't support that type
Browse files Browse the repository at this point in the history
  • Loading branch information
Heigh Tech LLC committed Feb 2, 2011
1 parent 8b058e6 commit 609e136
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions lib/ace/mode/ruby_highlight_rules.js
Expand Up @@ -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"
Expand Down

0 comments on commit 609e136

Please sign in to comment.