Bug 940713 - Enable autoclose brackets for source editor. r=anton

This commit is contained in:
Gabriel Luong 2013-11-25 15:57:51 -08:00
Родитель 04091c215f
Коммит 554f969b82
1 изменённых файлов: 11 добавлений и 10 удалений

Просмотреть файл

@ -122,16 +122,17 @@ function Editor(config) {
this.version = null;
this.config = {
value: "",
mode: Editor.modes.text,
indentUnit: tabSize,
tabSize: tabSize,
contextMenu: null,
matchBrackets: true,
extraKeys: {},
indentWithTabs: useTabs,
styleActiveLine: true,
theme: "mozilla"
value: "",
mode: Editor.modes.text,
indentUnit: tabSize,
tabSize: tabSize,
contextMenu: null,
matchBrackets: true,
extraKeys: {},
indentWithTabs: useTabs,
styleActiveLine: true,
autoCloseBrackets: true,
theme: "mozilla"
};
// Additional shortcuts.