From b2ae40982f3850d12e29d40d24ce855a0c0ad163 Mon Sep 17 00:00:00 2001 From: daa84 Date: Thu, 17 Aug 2017 17:06:09 +0300 Subject: [PATCH] Cleanup --- src/input.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/input.rs b/src/input.rs index be3edfb..90e7dd6 100644 --- a/src/input.rs +++ b/src/input.rs @@ -78,13 +78,11 @@ pub fn convert_key(ev: &EventKey) -> Option { } pub fn im_input(nvim: &mut Neovim, input: &str) { - println!("im input {}", input); debug!("nvim_input -> {}", input); nvim.input(&input).expect("Error run input command to nvim"); } pub fn gtk_key_press(nvim: &mut Neovim, ev: &EventKey) -> Inhibit { - println!("keyval {:?}", gdk::keyval_name(ev.get_keyval())); if let Some(input) = convert_key(ev) { debug!("nvim_input -> {}", input); nvim.input(&input).expect("Error run input command to nvim");