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