From 6cc3442f8dd4dfe5515f1aeacdf009544e50c753 Mon Sep 17 00:00:00 2001 From: Artyom Abakumov Date: Tue, 22 Oct 2024 13:01:25 +0300 Subject: [PATCH] Improve vscode settings for debugging (#8289) * Improve settings for temp files in vs code Mark temporary files as readable instead of excluding them Seems like variables does not work with glob pattern, keep only the relative glob pattern * Open epp files as C++ * Exclude temp files from search Co-authored-by: Adriano dos Santos Fernandes <529415+asfernandes@users.noreply.github.com> --------- Co-authored-by: Artyom Abakumov Co-authored-by: Adriano dos Santos Fernandes <529415+asfernandes@users.noreply.github.com> --- .vscode/settings.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index e008b8040c..acfef36e7d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,11 +8,16 @@ "[markdown]": { "files.trimTrailingWhitespace": false }, + "files.readonlyInclude": { + "temp/**": true + }, "files.insertFinalNewline": true, - - "files.exclude": { - "temp": true, - "gen": true + "files.associations": { + "*.epp": "cpp" + }, + "search.exclude": { + "temp/**": true, + "gen/**": true } }