Next line spacing default to 2 spaces rather than tab

This commit is contained in:
gigasquid 2011-04-29 22:34:02 -04:00
commit 682386643e
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -98,7 +98,7 @@ oop.inherits(Mode, TextMode);
if (state == "start") {
var match = line.match(/[\(\[]/);
if (match) {
indent += tab;
indent += " ";
}
match = line.match(/[\)]/);
if (match) {