Add VSCode command to attach to running CLI.

This commit is contained in:
Richard Newman 2018-02-16 13:20:26 -08:00
parent 23ebc3a5fc
commit c53da08a00

6
.vscode/launch.json vendored
View file

@ -4,6 +4,12 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "attach",
"name": "Attach to CLI (debug)",
"program": "${workspaceFolder}/target/debug/mentat_cli"
},
{
"type": "lldb",
"request": "launch",