From ffc89e483be1bc0cc20cdd19eb38dec6bf421c1a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= <blaz@mxxn.io>
Date: Wed, 1 Dec 2021 19:28:29 +0900
Subject: [PATCH] Mark some more TODOs as resolved

---
 helix-term/src/commands/dap.rs | 1 -
 helix-view/src/gutter.rs       | 1 -
 2 files changed, 2 deletions(-)

diff --git a/helix-term/src/commands/dap.rs b/helix-term/src/commands/dap.rs
index 6e89586a..1cb5a35a 100644
--- a/helix-term/src/commands/dap.rs
+++ b/helix-term/src/commands/dap.rs
@@ -677,7 +677,6 @@ pub fn dap_disable_exceptions(cx: &mut Context) {
 }
 
 // TODO: both edit condition and edit log need to be stable: we might get new breakpoints from the debugger which can change offsets
-// we also might be editing a breakpoint in a document that's no longer focused
 pub fn dap_edit_condition(cx: &mut Context) {
     if let Some((pos, breakpoint)) = commands::cmd::get_breakpoint_at_current_line(cx.editor) {
         let path = match doc!(cx.editor).path() {
diff --git a/helix-view/src/gutter.rs b/helix-view/src/gutter.rs
index 7bc8d375..f1127b6e 100644
--- a/helix-view/src/gutter.rs
+++ b/helix-view/src/gutter.rs
@@ -149,7 +149,6 @@ pub fn breakpoints<'doc>(
             }
         };
 
-        // TODO: also handle breakpoints only present in the user struct
         let sym = if breakpoint.verified { "▲" } else { "⊚" };
         write!(out, "{}", sym).unwrap();
         Some(style)