From dac317e620f227611e8c572125b0572ece4043c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Wed, 8 Dec 2021 14:50:20 +0900 Subject: [PATCH] TODO --- helix-term/src/commands/dap.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helix-term/src/commands/dap.rs b/helix-term/src/commands/dap.rs index b994f0f7..c556f214 100644 --- a/helix-term/src/commands/dap.rs +++ b/helix-term/src/commands/dap.rs @@ -616,6 +616,9 @@ pub fn dap_variables(cx: &mut Context) { }; let mut variables = Vec::new(); + // TODO: group by scope + // TODO: ui::Text to use tui::text + styled builder + for scope in scopes.iter() { let response = block_on(debugger.variables(scope.variables_reference));