From 18066a8c1c91e2210a594cc122b6775542c2d76e Mon Sep 17 00:00:00 2001 From: Karl Burtram Date: Mon, 18 Dec 2017 17:41:53 -0800 Subject: [PATCH] Turn off HotExit due to regression (#357) --- src/vs/workbench/services/textfile/common/textFileService.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/services/textfile/common/textFileService.ts b/src/vs/workbench/services/textfile/common/textFileService.ts index 48c67ed270..4ebb27f5a5 100644 --- a/src/vs/workbench/services/textfile/common/textFileService.ts +++ b/src/vs/workbench/services/textfile/common/textFileService.ts @@ -366,7 +366,9 @@ export abstract class TextFileService implements ITextFileService { } // Hot exit - const hotExitMode = configuration && configuration.files ? configuration.files.hotExit : HotExitConfiguration.ON_EXIT; + // {{SQL CARBON EDIT}} + // const hotExitMode = configuration && configuration.files ? configuration.files.hotExit : HotExitConfiguration.ON_EXIT; + const hotExitMode = HotExitConfiguration.OFF; if (hotExitMode === HotExitConfiguration.OFF || hotExitMode === HotExitConfiguration.ON_EXIT_AND_WINDOW_CLOSE) { this.configuredHotExit = hotExitMode; } else {