From 448b91689fc774aded9e646b66256a5c35c3ccf7 Mon Sep 17 00:00:00 2001 From: Fred Sundvik Date: Sun, 25 Jun 2017 14:17:51 +0300 Subject: Exclude .build and .hex from Visual Studio code --- .vscode/settings.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .vscode/settings.json (limited to '.vscode') diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..f5d7a7602a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +// Place your settings in this file to overwrite default and user settings. +{ + // Configure glob patterns for excluding files and folders. + "files.exclude": { + "**/.build": true, + "**/*.hex": true + } +} \ No newline at end of file -- cgit v1.2.3 From 67f722c9c8cb077b946dfb2b6a3b538e37f3aa8c Mon Sep 17 00:00:00 2001 From: Fred Sundvik Date: Sun, 2 Jul 2017 21:46:35 +0300 Subject: Configure vscode file associations, use hpp instead of h --- .vscode/settings.json | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.vscode') diff --git a/.vscode/settings.json b/.vscode/settings.json index f5d7a7602a..be0b85b78f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,5 +4,11 @@ "files.exclude": { "**/.build": true, "**/*.hex": true + }, + "files.associations": { + "*.h": "c", + "*.c": "c", + "*.cpp": "cpp", + "*.hpp": "cpp" } } \ No newline at end of file -- cgit v1.2.3