From 8e8e1f6913d66944ede81ae41d048e857b734301 Mon Sep 17 00:00:00 2001 From: Matt Irvine Date: Wed, 10 Jan 2018 18:07:49 -0800 Subject: [PATCH] Disable hot exit (#468) --- src/vs/workbench/services/textfile/common/textFileService.ts | 5 ++++- 1 file changed, 4 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..bf8172bfc1 100644 --- a/src/vs/workbench/services/textfile/common/textFileService.ts +++ b/src/vs/workbench/services/textfile/common/textFileService.ts @@ -366,7 +366,10 @@ 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 {