diff options
author | Blaž Hrastnik | 2021-11-07 12:47:44 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-11-07 12:47:44 +0000 |
commit | 3042ff3e5af6d45f17e3b00e12980ff7d952335f (patch) | |
tree | a69a3f2c1d57b8bc2378614db1d9a19a7a5bccd5 /helix-term/src | |
parent | 9963a5614d09bb0677464ad4cecc41d94cf2d7c4 (diff) |
dap: Clean up dap_start_impl, no need to clone arg keys
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/commands/dap.rs | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/helix-term/src/commands/dap.rs b/helix-term/src/commands/dap.rs index 51b5d390..a8d9ceb9 100644 --- a/helix-term/src/commands/dap.rs +++ b/helix-term/src/commands/dap.rs @@ -207,27 +207,26 @@ pub fn dap_start_impl( debugger.quirks = config.quirks.clone(); // TODO: avoid refetching all of this... pass a config in - let start_config = match name { + let template = match name { Some(name) => config.templates.iter().find(|t| t.name == name), None => config.templates.get(0), }; - let start_config = match start_config { - Some(c) => c, + let template = match template { + Some(template) => template, None => { editor.set_error("No debug config with given name".to_string()); return; } }; - let template = start_config.args.clone(); - let mut args: HashMap<String, Value> = HashMap::new(); + let mut args: HashMap<&str, Value> = HashMap::new(); if let Some(params) = params { - for (k, t) in template { - let mut value = t; + for (k, t) in &template.args { + let mut value = t.clone(); for (i, x) in params.iter().enumerate() { let mut param = x.to_string(); - if let Some(DebugConfigCompletion::Advanced(cfg)) = start_config.completion.get(i) { + if let Some(DebugConfigCompletion::Advanced(cfg)) = template.completion.get(i) { if cfg.completion == Some("filename".to_owned()) || cfg.completion == Some("directory".to_owned()) { @@ -238,14 +237,13 @@ pub fn dap_start_impl( } } // For param #0 replace {0} in args + let pattern = format!("{{{}}}", i); value = match value { DebugArgumentValue::String(v) => { - DebugArgumentValue::String(v.replace(format!("{{{}}}", i).as_str(), ¶m)) + DebugArgumentValue::String(v.replace(&pattern, ¶m)) } DebugArgumentValue::Array(arr) => DebugArgumentValue::Array( - arr.iter() - .map(|v| v.replace(format!("{{{}}}", i).as_str(), ¶m)) - .collect(), + arr.iter().map(|v| v.replace(&pattern, ¶m)).collect(), ), }; } @@ -264,7 +262,7 @@ pub fn dap_start_impl( let args = to_value(args).unwrap(); - let result = match &start_config.request[..] { + let result = match &template.request[..] { "launch" => block_on(debugger.launch(args)), "attach" => block_on(debugger.attach(args)), _ => { @@ -273,7 +271,7 @@ pub fn dap_start_impl( } }; if let Err(e) = result { - let msg = format!("Failed {} target: {}", start_config.request, e); + let msg = format!("Failed {} target: {}", template.request, e); editor.set_error(msg); return; } |