From 65868081fcc54aa4ce2ede3b95bb9800534f41f8 Mon Sep 17 00:00:00 2001 From: Blaž Hrastnik Date: Sun, 7 Nov 2021 21:26:03 +0900 Subject: dap: Simplify launch & start There's no need to re-detect language config, just use the one available on the document. --- helix-term/src/commands/dap.rs | 37 +++++++++++-------------------------- 1 file changed, 11 insertions(+), 26 deletions(-) (limited to 'helix-term/src/commands') diff --git a/helix-term/src/commands/dap.rs b/helix-term/src/commands/dap.rs index 0229b453..d9f0ba8f 100644 --- a/helix-term/src/commands/dap.rs +++ b/helix-term/src/commands/dap.rs @@ -165,19 +165,10 @@ pub fn dap_start_impl( socket: Option, params: Option>, ) { - let (_, doc) = current!(editor); + let doc = doc!(editor); - let path = match doc.path() { - Some(path) => path, - None => { - editor.set_error("Can't start debug: document has no path".to_string()); - return; - } - }; - - let language_config = editor.syn_loader.language_config_for_file_name(path); - let config = match language_config - .as_deref() + let config = match doc + .language_config() .and_then(|config| config.debugger.as_ref()) { Some(c) => c, @@ -283,7 +274,8 @@ pub fn dap_start_impl( } }; if let Err(e) = result { - editor.set_error(format!("Failed {} target: {}", start_config.request, e)); + let msg = format!("Failed {} target: {}", start_config.request, e); + editor.set_error(msg); return; } @@ -300,19 +292,10 @@ pub fn dap_launch(cx: &mut Context) { return; } - let (_, doc) = current!(cx.editor); - let path = match doc.path() { - Some(path) => path, - None => { - cx.editor - .set_error("Can't start debug: document has no path".to_string()); - return; - } - }; + let doc = doc!(cx.editor); - let language_config = cx.editor.syn_loader.language_config_for_file_name(path); - let config = match language_config - .as_deref() + let config = match doc + .language_config() .and_then(|config| config.debugger.as_ref()) { Some(c) => c, @@ -324,9 +307,11 @@ pub fn dap_launch(cx: &mut Context) { } }; + let templates = config.templates.clone(); + cx.push_layer(Box::new(Picker::new( true, - config.templates.clone(), + templates, |template| template.name.as_str().into(), |cx, template, _action| { let completions = template.completion.clone(); -- cgit v1.2.3-70-g09d2