From c53da08a0000f1cc58f2b5c505307296e3415211 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Fri, 16 Feb 2018 13:20:26 -0800 Subject: [PATCH] Add VSCode command to attach to running CLI. --- .vscode/launch.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 1b9e1e52..8db5ad66 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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",