mirror of
https://github.com/microsoft/edit.git
synced 2025-07-07 13:25:16 +00:00
Add a CodeLLDB launch option for VSCode (#444)
This commit is contained in:
parent
8970ac986e
commit
f0cb63b089
1 changed files with 11 additions and 0 deletions
11
.vscode/launch.json
vendored
11
.vscode/launch.json
vendored
|
@ -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"
|
||||
],
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue