diff --git a/crates/vim/src/motion.rs b/crates/vim/src/motion.rs index cb583c0abe8391b6e243e7f84f02a0811cf82b31..cc3ec06c4779c143fa4d9eb3e62d4a1090e430d5 100644 --- a/crates/vim/src/motion.rs +++ b/crates/vim/src/motion.rs @@ -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() diff --git a/crates/vim/src/test/neovim_backed_test_context.rs b/crates/vim/src/test/neovim_backed_test_context.rs index 10234561d6e90ed9a45077a0079983167d77828e..9b6bf976ca08a9a4ecf90a907f47772e8f1bdba1 100644 --- a/crates/vim/src/test/neovim_backed_test_context.rs +++ b/crates/vim/src/test/neovim_backed_test_context.rs @@ -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; diff --git a/crates/vim/src/vim.rs b/crates/vim/src/vim.rs index a38c72f169627df426d0c34942736a072c449187..7ce925944cede7325b9c2b6248250f895d12cc99 100644 --- a/crates/vim/src/vim.rs +++ b/crates/vim/src/vim.rs @@ -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, cx: &mut WindowContext) { - dbg!(&text); if text.is_empty() { return; }