From 7210c7246ab3dd56492d5956ca4158a408e1f0b0 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Wed, 28 Oct 2020 17:51:02 -0700 Subject: [PATCH] terminal: increase default localEchoLatencyThreshold --- .../workbench/contrib/terminal/common/terminalConfiguration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts b/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts index 021ef3d81a2..eba3dd72087 100644 --- a/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts +++ b/src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts @@ -356,7 +356,7 @@ export const terminalConfiguration: IConfigurationNode = { description: localize('terminal.integrated.localEchoLatencyThreshold', "Experimental: length of network delay, in milliseconds, where local edits will be echoed on the terminal without waiting for server acknowledgement. If '0', local echo will always be on, and if '-1' it will be disabled."), type: 'integer', minimum: -1, - default: 15, + default: 30, }, 'terminal.integrated.localEchoStyle': { description: localize('terminal.integrated.localEchoStyle', "Experimental: terminal style of locally echoed text; either a font style or an RGB color."), -- GitLab