Add support for CodeEditor edit config indentWithTabs

Will allow us to switch on or off the indentWithTabs config which will
indent the lines in tabs.

Bug: Issue 6609
Change-Id: If0e75de66a20d028ba066ff207f1d24e4633be27
This commit is contained in:
Paladox none
2017-06-28 17:03:33 +00:00
parent f4b2a76864
commit 6406b2c223
7 changed files with 33 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ public class EditPreferencesInfo {
public Boolean hideLineNumbers;
public Boolean matchBrackets;
public Boolean lineWrapping;
public Boolean indentWithTabs;
public Boolean autoCloseBrackets;
public Boolean showBase;
public Theme theme;
@@ -45,6 +46,7 @@ public class EditPreferencesInfo {
i.hideLineNumbers = false;
i.matchBrackets = true;
i.lineWrapping = false;
i.indentWithTabs = false;
i.autoCloseBrackets = false;
i.showBase = false;
i.theme = Theme.DEFAULT;