aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Bartodziej2021-06-03 13:46:49 +0000
committerBlaž Hrastnik2021-06-03 14:23:23 +0000
commit31ed4db1537dba80f81e26a66742a0f497172f03 (patch)
treeadafbdc45fdd9bcaa5ee1e5fe9c85aa1ffe44081
parent3c5dfb0633e5e5b64c78cb1c2e96291ef23e08d0 (diff)
Clean up leftover log.
-rw-r--r--helix-term/src/commands.rs1
1 files changed, 0 insertions, 1 deletions
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);