Add VSCode command to attach to running CLI.
This commit is contained in:
parent
23ebc3a5fc
commit
c53da08a00
1 changed files with 6 additions and 0 deletions
6
.vscode/launch.json
vendored
6
.vscode/launch.json
vendored
|
@ -4,6 +4,12 @@
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "lldb",
|
||||||
|
"request": "attach",
|
||||||
|
"name": "Attach to CLI (debug)",
|
||||||
|
"program": "${workspaceFolder}/target/debug/mentat_cli"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "lldb",
|
"type": "lldb",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
|
|
Loading…
Reference in a new issue