From 412ab9f4694d37bffe93468bf6e984440875b3b1 Mon Sep 17 00:00:00 2001 From: Pavlo Rudy Date: Sun, 18 Sep 2022 23:24:50 +0300 Subject: [PATCH] disable Natural Language Search by default; closes #1185 (#1261) --- update_settings.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/update_settings.sh b/update_settings.sh index 48ab1bf..0e32374 100755 --- a/update_settings.sh +++ b/update_settings.sh @@ -4,6 +4,7 @@ DEFAULT_ON="'default': TelemetryConfiguration.ON" DEFAULT_OFF="'default': TelemetryConfiguration.OFF" TELEMETRY_CRASH_REPORTER="'telemetry.enableCrashReporter':" TELEMETRY_CONFIGURATION=" TelemetryConfiguration.ON" +NLS=workbench.settings.enableNaturalLanguageSearch # include common functions . ../utils.sh @@ -47,3 +48,4 @@ update_setting () { update_setting "${TELEMETRY_CRASH_REPORTER}" src/vs/workbench/electron-sandbox/desktop.contribution.ts update_setting "${TELEMETRY_CONFIGURATION}" src/vs/platform/telemetry/common/telemetryService.ts +update_setting "${NLS}" src/vs/workbench/contrib/preferences/common/preferencesContribution.ts