mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 16:43: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:
parent
1e33151edc
commit
6cc3442f8d
13
.vscode/settings.json
vendored
13
.vscode/settings.json
vendored
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user