(changes 07:51 22.02.2024):

- Move Format into a Task
- Implement Debugging Option into Settings
This commit is contained in:
2024-02-22 07:52:01 +01:00
parent 0092edf54f
commit 3a77cd0687
6 changed files with 27 additions and 9 deletions

14
.vscode/tasks.json vendored
View File

@ -18,6 +18,20 @@
"kind": "build",
"isDefault": true
}
},
{
"label": "Format",
"command": "python ${workspaceFolder}/clang-format.py",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}/"
},
"presentation": {
"reveal": "always",
"panel": "new",
"focus": true
},
"problemMatcher": []
}
]
}