From 31ed4db1537dba80f81e26a66742a0f497172f03 Mon Sep 17 00:00:00 2001 From: Jakub Bartodziej Date: Thu, 3 Jun 2021 09:46:49 -0400 Subject: [PATCH] Clean up leftover log. --- helix-term/src/commands.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 283668cc..e5135443 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -762,7 +762,6 @@ fn _delete_selection(doc: &mut Document, view_id: ViewId) { use std::cmp::{max, min}; let max_to = max(0, doc.text().len_chars() - 1); let to = min(max_to, range.to() + 1); - log::info!("{} {} {}", max_to, to, doc.text().len_chars()); (range.from(), to, None) }); doc.apply(&transaction, view_id);