remove printline

Kay Simmons created

Change summary

crates/vim/src/vim.rs | 3 ---
1 file changed, 3 deletions(-)

Detailed changes

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