From 5342a196afcdadeab5c1fd06f5b28bebde821f13 Mon Sep 17 00:00:00 2001 From: exoticus Date: Fri, 10 Apr 2020 22:59:51 +0200 Subject: [PATCH] optional LLDB/VSDBG debuggers --- .vscode/launch.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index a3e8fc6..82015db 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,7 @@ "version": "0.2.0", "configurations": [ { - "name": "Debug", + "name": "(Mac/Linux) Debug", "type": "lldb", "request": "launch", "program": "${workspaceRoot}/target/debug/neovide", @@ -16,5 +16,16 @@ "RUST_BACKTRACE": "1" } }, + { + "name": "(Windows) Debug", + "type": "cppvsdbg", + "request": "launch", + "program": "${workspaceRoot}/target/debug/neovide.exe", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceRoot}", + "environment": [], + "externalConsole": true + }, ] } \ No newline at end of file