chore: lean.code-workspace: fix terminal cwd (#10802)

This commit is contained in:
Sebastian Ullrich 2025-10-16 22:19:12 +02:00 committed by GitHub
parent 8a1b6e0f71
commit 5c7b003191
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,8 @@
],
"settings": {
// Open terminal at root, not current workspace folder
"terminal.integrated.cwd": "${workspaceFolder:.}",
// (there is not way to directly refer to the root folder included as `.` above)
"terminal.integrated.cwd": "${workspaceFolder:src}/..",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"cmake.buildDirectory": "${workspaceFolder}/build/release",