Disable debugger margin and minimap of editor

This commit is contained in:
Kristóf Tóth 2018-06-12 19:44:36 +02:00
parent 549343c2ef
commit 3a46f3e465

View File

@ -46,7 +46,12 @@ export class IdeComponent implements OnInit {
autosave = null;
language: string = config.ide.defaultLanguage;
editorOptions = {theme: 'vs-dark', language: 'python'};
editorOptions = {
theme: 'vs-dark',
language: 'python',
glyphMargin: false,
minimap: {enabled: false}
};
@Output() newLogs = new EventEmitter<any>();