8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 16:03:03 +01:00

Improve vscode settings for debugging (#8289)

* Improve settings for temp files in vs code

Mark temporary files as readable instead of excluding them
Seems like variables does not work with glob pattern, keep only the relative glob pattern

* Open epp files as C++

* Exclude temp files from search

Co-authored-by: Adriano dos Santos Fernandes <529415+asfernandes@users.noreply.github.com>

---------

Co-authored-by: Artyom Abakumov <artyom.abakumov@red-soft.ru>
Co-authored-by: Adriano dos Santos Fernandes <529415+asfernandes@users.noreply.github.com>
This commit is contained in:
Artyom Abakumov 2024-10-22 13:01:25 +03:00 committed by GitHub
parent 1e33151edc
commit 6cc3442f8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

13
.vscode/settings.json vendored
View File

@ -8,11 +8,16 @@
"[markdown]": { "[markdown]": {
"files.trimTrailingWhitespace": false "files.trimTrailingWhitespace": false
}, },
"files.readonlyInclude": {
"temp/**": true
},
"files.insertFinalNewline": true, "files.insertFinalNewline": true,
"files.associations": {
"files.exclude": { "*.epp": "cpp"
"temp": true, },
"gen": true "search.exclude": {
"temp/**": true,
"gen/**": true
} }
} }