2018-02-15 15:36:18 +00:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
2018-02-16 21:20:26 +00:00
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "attach",
|
|
|
|
"name": "Attach to CLI (debug)",
|
|
|
|
"program": "${workspaceFolder}/target/debug/mentat_cli"
|
|
|
|
},
|
2018-02-15 15:36:18 +00:00
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "CLI",
|
|
|
|
"stdio": "*",
|
|
|
|
"program": "${workspaceFolder}/target/debug/mentat_cli",
|
|
|
|
"args": [],
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
|
|
"terminal": "integrated"
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|