From 46d94c334393007c8f6a723d6aa0c1f802728bf2 Mon Sep 17 00:00:00 2001 From: Austen Adler Date: Thu, 6 Oct 2022 21:24:43 -0400 Subject: [PATCH] Cleanup --- kakplugin/src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/kakplugin/src/lib.rs b/kakplugin/src/lib.rs index 872bdb0..bc764b1 100644 --- a/kakplugin/src/lib.rs +++ b/kakplugin/src/lib.rs @@ -144,10 +144,6 @@ where write!(f, "set-register '\"'")?; for i in selections_iter { num_written = num_written.saturating_add(1); - // eprintln!( - // "Got response: {:?}", - // i.map_err(Into::into)?.clone().as_ref() - // ); write!(f, " '{}'", escape(i.map_err(Into::into)?.as_ref()))?; }