Remove stray dbg! statements

This commit is contained in:
Antonio Scandurra 2023-04-21 10:49:47 +02:00
parent 1b2e480e1e
commit d32a7218cd
3 changed files with 0 additions and 4 deletions

View file

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