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));