diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index c39802a2f..b83c1e3e5 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -4649,7 +4649,8 @@ fn dap_variables(cx: &mut Context) { Some(data_type) => format!("{} ", data_type), None => "".to_owned(), }; - s.push_str(&format!("{}{} = {}; ", prefix, var.name, var.value)); + // s.push_str(&format!("{}{} = {}; ", prefix, var.name, var.value)); + s.push_str(&format!("{}{}; ", prefix, var.name,)); } } }