From 20ef1af61b1042daf162991eea1c4fbfb99f0b36 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Tue, 18 Oct 2022 15:40:32 +0200 Subject: [PATCH] vscode: Added file associations for C++ header files without suffix. --- .vscode/settings.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..dc2cb39413 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,12 @@ +{ + "files.associations": { + "stop_token": "cpp", + "*.tcc": "cpp", + "initializer_list": "cpp", + "streambuf": "cpp", + "tuple": "cpp", + "memory": "cpp" + }, + "vscode-as-git-mergetool.settingsAssistantOnStartup": false, + "makefile.makeDirectory": "build/x86_64" +} \ No newline at end of file