aboutsummaryrefslogtreecommitdiff
path: root/helix-dap/src
diff options
context:
space:
mode:
Diffstat (limited to 'helix-dap/src')
-rw-r--r--helix-dap/src/client.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs
index baf924b9..0f647681 100644
--- a/helix-dap/src/client.rs
+++ b/helix-dap/src/client.rs
@@ -115,6 +115,10 @@ impl Client {
let process = Command::new(cmd)
.args(args)
.args(port_format.replace("{}", &port.to_string()).split(' '))
+ // silence messages
+ .stdin(Stdio::null())
+ .stdout(Stdio::null())
+ .stderr(Stdio::null())
// make sure the process is reaped on drop
.kill_on_drop(true)
.spawn()?;