aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helix-term/src/commands/dap.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-term/src/commands/dap.rs b/helix-term/src/commands/dap.rs
index de1b2078..7d438a30 100644
--- a/helix-term/src/commands/dap.rs
+++ b/helix-term/src/commands/dap.rs
@@ -364,11 +364,10 @@ fn debug_parameter_prompt(
_ => "".to_owned(),
};
- let noop = |_input: &str| Vec::new();
let completer = match &field_type[..] {
"filename" => ui::completers::filename,
"directory" => ui::completers::directory,
- _ => noop,
+ _ => |_input: &str| Vec::new(),
};
Prompt::new(
format!("{}: ", name).into(),