From ccdd6d91955c184b644fa42f03d778f0fb1dd036 Mon Sep 17 00:00:00 2001 From: "Matthieu Baerts (NGI0)" Date: Fri, 12 Jul 2024 11:15:52 +0200 Subject: [PATCH] vscode: avoid inserting header It doesn't seem to work correctly, it inserts headers that were indirectly included, using double quotes and not <>: sounds better to disable this feature. Signed-off-by: Matthieu Baerts (NGI0) --- vscode/settings-extra.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vscode/settings-extra.json b/vscode/settings-extra.json index 0415b8b..61427d8 100644 --- a/vscode/settings-extra.json +++ b/vscode/settings-extra.json @@ -1,6 +1,7 @@ { "clangd.arguments": [ - "-compile-commands-dir=${workspaceFolder}/.virtme/build-clang" + "-compile-commands-dir=${workspaceFolder}/.virtme/build-clang", + "-header-insertion=never" ], "files.watcherExclude": { "**/.git/objects/**": true,