diff options
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/commands.rs | 2 |
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()); |