From 86102a651f3b3bf1c8965ca9b44b578694f7ce3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Tue, 17 Aug 2021 09:44:02 +0900 Subject: [PATCH] wip --- helix-dap/src/client.rs | 1 - helix-term/src/commands.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs index 0f647681d..9b1664b3d 100644 --- a/helix-dap/src/client.rs +++ b/helix-dap/src/client.rs @@ -18,7 +18,6 @@ use std::{ }; use tokio::{ io::{AsyncBufRead, AsyncWrite, BufReader, BufWriter}, - join, net::TcpStream, process::{Child, Command}, sync::{ diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 253675206..bcab85c4c 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1925,7 +1925,7 @@ mod cmd { let mut args = HashMap::new(); args.insert("mode", "debug"); - // args.insert("program", "path/to/program"); + args.insert("program", "main"); let request = client.launch(to_value(args)?); let _ = block_on(request)?;