From b460e5b8e1168848f0efbf5e1835e0a823671b26 Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Tue, 21 Jul 2020 10:42:10 +0200 Subject: [PATCH] Mark clangd.path as scope=machine (#56) When overridden, this tends to be machine-specific, especially when the path is produced by autoinstall. This change of scope should cause vscode to update the remote settings rather than the (cross-machine) user ones, in the autoinstall flow. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index e6e6e307..3f9fef7b 100644 --- a/package.json +++ b/package.json @@ -90,6 +90,7 @@ "clangd.path": { "type": "string", "default": "clangd", + "scope": "machine", "description": "The path to clangd executable, e.g.: /usr/bin/clangd." }, "clangd.arguments": {