From ed99087b8c2f89a94ac0474bf8e7c4da98f68234 Mon Sep 17 00:00:00 2001 From: Kim-Adeline Miguel Date: Thu, 12 Dec 2019 10:17:25 -0800 Subject: [PATCH 1/2] Default python.workspaceSymbols.enabled to false --- news/2 Fixes/9046.md | 1 + package.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 news/2 Fixes/9046.md diff --git a/news/2 Fixes/9046.md b/news/2 Fixes/9046.md new file mode 100644 index 000000000000..4a808556a90c --- /dev/null +++ b/news/2 Fixes/9046.md @@ -0,0 +1 @@ +Set `python.workspaceSymbols.enabled` to false by default. diff --git a/package.json b/package.json index a6de758c7ff7..59e5d217129c 100644 --- a/package.json +++ b/package.json @@ -2482,8 +2482,8 @@ }, "python.workspaceSymbols.enabled": { "type": "boolean", - "default": true, - "description": "Set to 'false' to disable Workspace Symbol provider using ctags.", + "default": false, + "description": "Set to 'true' to enable Workspace Symbol provider using ctags.", "scope": "resource" }, "python.workspaceSymbols.exclusionPatterns": { From b29b6ffd91fc89e55dffa9fe6a1a524d8eeb493a Mon Sep 17 00:00:00 2001 From: Kim-Adeline Miguel Date: Thu, 12 Dec 2019 10:18:22 -0800 Subject: [PATCH 2/2] Rewording --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 59e5d217129c..b6ca887db169 100644 --- a/package.json +++ b/package.json @@ -2483,7 +2483,7 @@ "python.workspaceSymbols.enabled": { "type": "boolean", "default": false, - "description": "Set to 'true' to enable Workspace Symbol provider using ctags.", + "description": "Set to 'true' to enable ctags to provide Workspace Symbols.", "scope": "resource" }, "python.workspaceSymbols.exclusionPatterns": {