Add a CodeLLDB launch option for VSCode (#444)

This commit is contained in:
Nikita Samusev 2025-06-10 14:51:24 +03:00 committed by GitHub
parent 8970ac986e
commit f0cb63b089
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

11
.vscode/launch.json vendored
View file

@ -23,6 +23,17 @@
"args": [
"${workspaceFolder}/src/bin/edit/main.rs"
],
},
{
"name": "Launch Debug (LLDB)",
"preLaunchTask": "rust: cargo build",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/target/debug/edit",
"cwd": "${workspaceFolder}",
"args": [
"${workspaceFolder}/src/bin/edit/main.rs"
],
}
]
}