diff options
author | Eric Guzman | 2012-03-12 15:33:04 -0700 |
---|---|---|
committer | Eric Guzman | 2012-03-12 15:33:04 -0700 |
commit | 7e3161153b87b891875ac65368a19aed12909fa3 (patch) | |
tree | b80f48d711a9729fc39dbbdff28c4f0620e7302d /imports/codemirror/mode/ruby/ruby.js | |
parent | 7a28932ba8a7517bbaaabe1f5edf678416aafc9c (diff) | |
parent | 69d90467865a1384725b2301901be2180c5a841f (diff) | |
download | ninja-7e3161153b87b891875ac65368a19aed12909fa3.tar.gz |
Merge branch 'refs/heads/master' into CSSPanelUpdates
Conflicts:
js/panels/PanelContainer/PanelContainer.reel/PanelContainer.js
Diffstat (limited to 'imports/codemirror/mode/ruby/ruby.js')
-rw-r--r--[-rwxr-xr-x] | imports/codemirror/mode/ruby/ruby.js | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/imports/codemirror/mode/ruby/ruby.js b/imports/codemirror/mode/ruby/ruby.js index ddc1a654..b647efd0 100755..100644 --- a/imports/codemirror/mode/ruby/ruby.js +++ b/imports/codemirror/mode/ruby/ruby.js | |||
@@ -13,7 +13,7 @@ CodeMirror.defineMode("ruby", function(config, parserConfig) { | |||
13 | "require_relative", "extend", "autoload" | 13 | "require_relative", "extend", "autoload" |
14 | ]); | 14 | ]); |
15 | var indentWords = wordObj(["def", "class", "case", "for", "while", "do", "module", "then", | 15 | var indentWords = wordObj(["def", "class", "case", "for", "while", "do", "module", "then", |
16 | "unless", "catch", "loop", "proc"]); | 16 | "catch", "loop", "proc", "begin"]); |
17 | var dedentWords = wordObj(["end", "until"]); | 17 | var dedentWords = wordObj(["end", "until"]); |
18 | var matching = {"[": "]", "{": "}", "(": ")"}; | 18 | var matching = {"[": "]", "{": "}", "(": ")"}; |
19 | var curPunc; | 19 | var curPunc; |
@@ -31,8 +31,9 @@ CodeMirror.defineMode("ruby", function(config, parserConfig) { | |||
31 | } | 31 | } |
32 | if (stream.eatSpace()) return null; | 32 | if (stream.eatSpace()) return null; |
33 | var ch = stream.next(); | 33 | var ch = stream.next(); |
34 | if (ch == "`" || ch == "'" || ch == '"' || ch == "/") { | 34 | if (ch == "`" || ch == "'" || ch == '"' || |
35 | return chain(readQuoted(ch, "string", ch == '"'), stream, state); | 35 | (ch == "/" && !stream.eol() && stream.peek() != " ")) { |
36 | return chain(readQuoted(ch, "string", ch == '"' || ch == "`"), stream, state); | ||
36 | } else if (ch == "%") { | 37 | } else if (ch == "%") { |
37 | var style, embed = false; | 38 | var style, embed = false; |
38 | if (stream.eat("s")) style = "atom"; | 39 | if (stream.eat("s")) style = "atom"; |
@@ -165,7 +166,8 @@ CodeMirror.defineMode("ruby", function(config, parserConfig) { | |||
165 | : "variable"; | 166 | : "variable"; |
166 | if (indentWords.propertyIsEnumerable(word)) kwtype = "indent"; | 167 | if (indentWords.propertyIsEnumerable(word)) kwtype = "indent"; |
167 | else if (dedentWords.propertyIsEnumerable(word)) kwtype = "dedent"; | 168 | else if (dedentWords.propertyIsEnumerable(word)) kwtype = "dedent"; |
168 | else if (word == "if" && stream.column() == stream.indentation()) kwtype = "indent"; | 169 | else if ((word == "if" || word == "unless") && stream.column() == stream.indentation()) |
170 | kwtype = "indent"; | ||
169 | } | 171 | } |
170 | if (curPunc || (style && style != "comment")) state.lastTok = word || curPunc || style; | 172 | if (curPunc || (style && style != "comment")) state.lastTok = word || curPunc || style; |
171 | if (curPunc == "|") state.varList = !state.varList; | 173 | if (curPunc == "|") state.varList = !state.varList; |
@@ -185,11 +187,14 @@ CodeMirror.defineMode("ruby", function(config, parserConfig) { | |||
185 | var firstChar = textAfter && textAfter.charAt(0); | 187 | var firstChar = textAfter && textAfter.charAt(0); |
186 | var ct = state.context; | 188 | var ct = state.context; |
187 | var closing = ct.type == matching[firstChar] || | 189 | var closing = ct.type == matching[firstChar] || |
188 | ct.type == "keyword" && /^(?:end|until|else|elsif|when)\b/.test(textAfter); | 190 | ct.type == "keyword" && /^(?:end|until|else|elsif|when|rescue)\b/.test(textAfter); |
189 | return ct.indented + (closing ? 0 : config.indentUnit) + | 191 | return ct.indented + (closing ? 0 : config.indentUnit) + |
190 | (state.continuedLine ? config.indentUnit : 0); | 192 | (state.continuedLine ? config.indentUnit : 0); |
191 | } | 193 | }, |
194 | electricChars: "}de" // enD and rescuE | ||
195 | |||
192 | }; | 196 | }; |
193 | }); | 197 | }); |
194 | 198 | ||
195 | CodeMirror.defineMIME("text/x-ruby", "ruby"); | 199 | CodeMirror.defineMIME("text/x-ruby", "ruby"); |
200 | |||