Remove @autoIndent from Project and EditSession

This commit is contained in:
Corey Johnson
2013-01-09 15:22:37 -08:00
parent d5a23f770f
commit 261a8aae2d
3 changed files with 1 additions and 8 deletions

View File

@@ -33,11 +33,10 @@ class EditSession
anchorRanges: null
cursors: null
selections: null
autoIndent: false # TODO: re-enabled auto-indent after fixing the rest of tokenization
softTabs: true
softWrap: false
constructor: ({@project, @buffer, tabLength, @autoIndent, softTabs, @softWrap }) ->
constructor: ({@project, @buffer, tabLength, softTabs, @softWrap }) ->
@softTabs = @buffer.usesSoftTabs() ? softTabs ? true
@languageMode = new LanguageMode(this, @buffer.getExtension())
@displayBuffer = new DisplayBuffer(@buffer, { @languageMode, tabLength })