diff options
author | Blaž Hrastnik | 2021-12-08 05:50:20 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-12-09 01:55:32 +0000 |
commit | dac317e620f227611e8c572125b0572ece4043c4 (patch) | |
tree | 86d16f0d152480080ea5c1c0550ac7dbc8279e2b /helix-term | |
parent | 60c86eff898ccaa0688fb688a056b267fe832002 (diff) |
TODO
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/commands/dap.rs | 3 |
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)); |