From ef375f6472715b0541c1257f4f3742ea7b4fe7b4 Mon Sep 17 00:00:00 2001 From: Matthew Gordon Date: Thu, 30 Oct 2025 21:49:07 -0300 Subject: [PATCH] Remove old dbg!() --- core/src/text_buffer/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/text_buffer/mod.rs b/core/src/text_buffer/mod.rs index f51feb5..5f81c90 100644 --- a/core/src/text_buffer/mod.rs +++ b/core/src/text_buffer/mod.rs @@ -32,7 +32,7 @@ impl TextBuffer { if num_chars == 0 { 0 } else { - dbg!(self.contents.total_lines()) + self.contents.total_lines() + if self .contents .get_char_at_index(self.contents.total_chars() - 1)