aboutsummaryrefslogtreecommitdiff
path: root/helix-dap
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-30 13:09:41 +0000
committerDmitry Sharshakov2021-08-30 13:09:41 +0000
commit6265e196b700b363244961ed2957d9eef5460c34 (patch)
treee655542685791e4a3331d163babea06230329fc4 /helix-dap
parent0b0b1d850a0a622dc7e74ec3937523ea1dc93fe8 (diff)
compat: change lldb to lldb-vscode
This should be preferred ID, although now lldb-vscode works with any
Diffstat (limited to 'helix-dap')
-rw-r--r--helix-dap/examples/dap-lldb.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/helix-dap/examples/dap-lldb.rs b/helix-dap/examples/dap-lldb.rs
index 2adef8b2..2022ef48 100644
--- a/helix-dap/examples/dap-lldb.rs
+++ b/helix-dap/examples/dap-lldb.rs
@@ -48,7 +48,10 @@ pub async fn main() -> Result<()> {
tokio::spawn(dispatch(events));
- println!("init: {:?}", client.initialize("lldb".to_owned()).await);
+ println!(
+ "init: {:?}",
+ client.initialize("lldb-vscode".to_owned()).await
+ );
println!("caps: {:?}", client.capabilities());
let args = LaunchArguments {