Unnamed repository; edit this file 'description' to name the repository.
| -rw-r--r-- | helix-view/src/handlers/dap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/handlers/dap.rs b/helix-view/src/handlers/dap.rs index f8f3c1b8..a8b3d88d 100644 --- a/helix-view/src/handlers/dap.rs +++ b/helix-view/src/handlers/dap.rs @@ -492,7 +492,7 @@ impl Editor { let process = match std::process::Command::new(&config.command) .args(&config.args) - .arg(arguments.args.join(" ")) + .args(&arguments.args) .spawn() { Ok(process) => process, |