From 6a8576718b8800649b5a7081b7e5bc66cc82729f Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Tue, 26 Jul 2016 11:37:56 -0700 Subject: [PATCH] Turn terminal blinking off by default Fixes #9753 --- .../parts/terminal/electron-browser/terminal.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.ts b/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.ts index 3a1d6efca8b..0e04849f546 100644 --- a/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.ts +++ b/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.ts @@ -79,7 +79,7 @@ configurationRegistry.registerConfiguration({ 'terminal.integrated.cursorBlinking': { 'description': nls.localize('terminal.integrated.cursorBlinking', "Controls whether the terminal cursor blinks."), 'type': 'boolean', - 'default': true + 'default': false }, 'terminal.integrated.setLocaleVariables': { 'description': nls.localize('terminal.integrated.setLocaleVariables', "Controls whether locale variables are set at startup of the terminal, this defaults to true on OS X, false on other platforms."), -- GitLab