We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b2685b commit ee19bc1Copy full SHA for ee19bc1
.vscode/settings.json
@@ -0,0 +1,7 @@
1
+{
2
+ "C_Cpp.vcFormat.newLine.beforeOpenBrace.function": "newLine",
3
+ "C_Cpp.vcFormat.space.beforeFunctionOpenParenthesis": "insert",
4
+ "C_Cpp.vcFormat.space.pointerReferenceAlignment": "right",
5
+ "C_Cpp.formatting": "vcFormat",
6
+ "C_Cpp.vcFormat.indent.withinParentheses": "alignToParenthesis"
7
+}
.vscode/tasks.json
@@ -0,0 +1,21 @@
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "type": "process",
+ "label": "Build project",
+ "command": "/usr/bin/make",
8
+ "args": [],
9
+ "options": {
10
+ "cwd": "${workspaceFolder}"
11
+ },
12
+ "problemMatcher": [
13
+ "$gcc"
14
+ ],
15
+ "group": {
16
+ "kind": "build",
17
+ "isDefault": true
18
+ }
19
20
+ ]
21
0 commit comments