aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-23 14:18:03 +0000
committerDmitry Sharshakov2021-08-23 14:18:03 +0000
commit839d2105739036decf045f6af85ce05152f514ef (patch)
tree77e1cbe1da8cabaf8ccb3973fe9ed445ff87df3a /helix-term/src
parentf55a012fb744b258ac84ac0302cb0b87f7d35173 (diff)
Enable stdio transport via config
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/commands.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 9ecc5bfe..749b8820 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -4362,7 +4362,7 @@ fn dap_start(cx: &mut Context) {
return;
}
};
- let started = Client::tcp_process(config, 0);
+ let started = Client::process(config, 0);
let (mut debugger, events) = block_on(started).unwrap();
let request = debugger.initialize("go".to_owned());