remove printline

This commit is contained in:
Kay Simmons 2022-12-08 14:45:22 -08:00
parent 2cf48c03f9
commit e61a38b3a9

View file

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