keep indent level for all modes by default

This commit is contained in:
nightwing 2013-02-09 20:51:47 +04:00
commit 300ae2d757

View file

@ -65,7 +65,7 @@ var Mode = function() {
};
this.getNextLineIndent = function(state, line, tab) {
return "";
return this.$getIndent(line);
};
this.checkOutdent = function(state, line, input) {