optional LLDB/VSDBG debuggers

macos-click-through
exoticus 5 years ago
parent ed917b2c50
commit 5342a196af

@ -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
},
]
}
Loading…
Cancel
Save