From 326293cb5706fefb7b7ee3c7d4b27389c5c888fe Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Wed, 25 Aug 2021 08:33:46 +0300 Subject: only show variables' names and types --- helix-term/src/commands.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'helix-term/src') diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index c39802a2..b83c1e3e 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,)); } } } -- cgit v1.2.3-70-g09d2