From da56a2cd4084fcb88069ba553e4b5b5f859b697c Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 25 Jul 2016 17:14:25 +0200 Subject: [PATCH] workaround missing config change event, #9705 --- src/vs/editor/common/commonCodeEditor.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/editor/common/commonCodeEditor.ts b/src/vs/editor/common/commonCodeEditor.ts index 09d35fc516b..36a1c76910a 100644 --- a/src/vs/editor/common/commonCodeEditor.ts +++ b/src/vs/editor/common/commonCodeEditor.ts @@ -229,6 +229,7 @@ export abstract class CommonCodeEditor extends EventEmitter implements editorCom public updateOptions(newOptions:editorCommon.IEditorOptions): void { this._configuration.updateOptions(newOptions); this._editorReadonly.set(this._configuration.editor.readOnly); + this._editorTabMovesFocusKey.set(this._configuration.editor.tabFocusMode); } public getConfiguration(): editorCommon.InternalEditorOptions {