diff options
Diffstat (limited to 'helix-dap/examples')
-rw-r--r-- | helix-dap/examples/dap-lldb.rs | 5 |
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 { |