no need to track the cursor manually anymore

This commit is contained in:
Fabian Jakobs 2011-02-11 11:51:01 +01:00
commit 4cc5bf9a7b
11 changed files with 13 additions and 36 deletions

View file

@ -108,7 +108,7 @@ oop.inherits(Mode, TextMode);
};
this.autoOutdent = function(state, doc, row) {
return this.$outdent.autoOutdent(doc, row);
this.$outdent.autoOutdent(doc, row);
};
}).call(Mode.prototype);