diff --git a/crates/vim/src/vim.rs b/crates/vim/src/vim.rs index 898886714e..40cc414778 100644 --- a/crates/vim/src/vim.rs +++ b/crates/vim/src/vim.rs @@ -84,17 +84,14 @@ pub fn init(cx: &mut MutableAppContext) { // Any keystrokes not mapped to vim should clear the active operator pub fn observe_keypresses(window_id: usize, cx: &mut MutableAppContext) { cx.observe_keystrokes(window_id, |_keystroke, _result, handled_by, cx| { - dbg!(_keystroke); if let Some(handled_by) = handled_by { if handled_by.namespace() == "vim" { - println!("Vim action. Don't clear"); return true; } } Vim::update(cx, |vim, cx| { if vim.active_operator().is_some() { - println!("Clearing operator"); vim.clear_operator(cx); } });