Change summary
crates/vim/src/motion.rs | 1 -
crates/vim/src/test/neovim_backed_test_context.rs | 1 -
crates/vim/src/vim.rs | 2 --
3 files changed, 4 deletions(-)
Detailed changes
@@ -117,7 +117,6 @@ pub fn init(cx: &mut AppContext) {
}
pub(crate) fn motion(motion: Motion, cx: &mut WindowContext) {
- dbg!(&motion);
if let Some(Operator::Namespace(_))
| Some(Operator::FindForward { .. })
| Some(Operator::FindBackward { .. }) = Vim::read(cx).active_operator()
@@ -153,7 +153,6 @@ impl<'a> NeovimBackedTestContext<'a> {
}
}
- dbg!(initial_state);
let _state_context = self.set_shared_state(initial_state).await;
let _keystroke_context = self.simulate_shared_keystrokes(keystrokes).await;
self.assert_state_matches().await;
@@ -209,7 +209,6 @@ impl Vim {
}
fn push_operator(&mut self, operator: Operator, cx: &mut WindowContext) {
- dbg!("push_operator", &operator);
self.state.operator_stack.push(operator);
self.sync_vim_settings(cx);
}
@@ -249,7 +248,6 @@ impl Vim {
}
fn active_editor_input_ignored(text: Arc<str>, cx: &mut WindowContext) {
- dbg!(&text);
if text.is_empty() {
return;
}