Update vscode config

This commit is contained in:
Thomas Jensen 2023-12-17 13:39:41 +01:00
parent 5c615a3ada
commit 0fe0362926
No known key found for this signature in database
GPG Key ID: A4ACEE270D0FB7DB
3 changed files with 5 additions and 6 deletions

1
.gitignore vendored
View File

@ -69,4 +69,5 @@ CMakeUserPresets.json
# CMake / Conan # CMake / Conan
build/ build/
/venv/
CMakeUserPresets.json CMakeUserPresets.json

View File

@ -4,7 +4,6 @@
"name": "Win32", "name": "Win32",
"includePath": [ "includePath": [
"${workspaceFolder}/src", "${workspaceFolder}/src",
"${workspaceFolder}/src/misc",
"${workspaceFolder}/out", "${workspaceFolder}/out",
"${workspaceFolder}/vendor/libunistring-1.0/lib", "${workspaceFolder}/vendor/libunistring-1.0/lib",
"${workspaceFolder}/vendor/pcre2-10.40/src", "${workspaceFolder}/vendor/pcre2-10.40/src",

View File

@ -22,7 +22,8 @@
"**/cmake-build-debug": true, "**/cmake-build-debug": true,
"**/coverage": true, "**/coverage": true,
"**/out": true, "**/out": true,
"**/vendor": true "**/vendor": true,
"**/venv": true
}, },
"todo-tree.highlights.defaultHighlight": { "todo-tree.highlights.defaultHighlight": {
@ -36,7 +37,8 @@
"**/.github/**", "**/.github/**",
"**/_site/**", "**/_site/**",
"**/_support/**", "**/_support/**",
"**/vendor/**" "**/vendor/**",
"**/venv/**"
], ],
"todo-tree.general.statusBar": "total", "todo-tree.general.statusBar": "total",
"todo-tree.general.tags": ["TODO", "FIXME", "CHECK"], "todo-tree.general.tags": ["TODO", "FIXME", "CHECK"],
@ -44,9 +46,6 @@
"todo-tree.tree.expanded": true, "todo-tree.tree.expanded": true,
"todo-tree.tree.showCountsInTree": true, "todo-tree.tree.showCountsInTree": true,
"[lex]": {
"files.encoding": "iso885915"
},
"[makefile]": { "[makefile]": {
"editor.insertSpaces": false, "editor.insertSpaces": false,
"editor.detectIndentation": false, "editor.detectIndentation": false,