Fix Vim code formating (#9098)

- N/A
This commit is contained in:
Hans
2024-03-11 10:03:51 +02:00
committed by GitHub
parent 39bd12a557
commit 269848775c
+2 -2
View File
@@ -457,8 +457,8 @@ impl Vim {
}
fn pop_operator(&mut self, cx: &mut WindowContext) -> Operator {
let popped_operator = self.update_state( |state| state.operator_stack.pop()
) .expect("Operator popped when no operator was on the stack. This likely means there is an invalid keymap config");
let popped_operator = self.update_state(|state| state.operator_stack.pop())
.expect("Operator popped when no operator was on the stack. This likely means there is an invalid keymap config");
self.sync_vim_settings(cx);
popped_operator
}