aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/commands
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-12-08 05:50:20 +0000
committerBlaž Hrastnik2021-12-09 01:55:32 +0000
commitdac317e620f227611e8c572125b0572ece4043c4 (patch)
tree86d16f0d152480080ea5c1c0550ac7dbc8279e2b /helix-term/src/commands
parent60c86eff898ccaa0688fb688a056b267fe832002 (diff)
TODO
Diffstat (limited to 'helix-term/src/commands')
-rw-r--r--helix-term/src/commands/dap.rs3
1 files changed, 3 insertions, 0 deletions
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));