aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-12-13 15:41:51 +0000
committerBlaž Hrastnik2021-12-13 15:41:51 +0000
commit7ad8eaaef0b292f4be6c66298cea40d2b928e172 (patch)
tree650a066e302979e78cb0beb2be39a57f0c10846d /helix-term/src
parentdf3b88387b311e16b3af3771c3870b2ea0235c95 (diff)
wip
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/commands/dap.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/helix-term/src/commands/dap.rs b/helix-term/src/commands/dap.rs
index 8935bc9c..58ef99f5 100644
--- a/helix-term/src/commands/dap.rs
+++ b/helix-term/src/commands/dap.rs
@@ -614,12 +614,9 @@ pub fn dap_variables(cx: &mut Context) {
return;
}
};
- let mut variables = Vec::new();
-
- // TODO: group by scope
- // TODO: ui::Text to use tui::text + styled builder
- // let contents = tui::text::Text::new();
+ // TODO: allow expanding variables into sub-fields
+ let mut variables = Vec::new();
let theme = &cx.editor.theme;
let scope_style = theme.get("ui.linenr.selected");