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");