mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-08 19:43:11 +00:00
de-dbg!
This commit is contained in:
parent
b9c7bafc80
commit
7ec4f22202
1 changed files with 4 additions and 3 deletions
|
@ -1209,9 +1209,10 @@ impl<'a> WindowContext<'a> {
|
|||
// in that scenario "binding.keystrokes" is ",w" and "pending.keystrokes" is ",".
|
||||
|
||||
if bindings.iter().all(|binding| {
|
||||
currently_pending.bindings.iter().all(|pending| {
|
||||
dbg!(!dbg!(binding.keystrokes()).starts_with(dbg!(&pending.keystrokes)))
|
||||
})
|
||||
currently_pending
|
||||
.bindings
|
||||
.iter()
|
||||
.all(|pending| binding.keystrokes().starts_with(&pending.keystrokes))
|
||||
}) {
|
||||
self.replay_pending_input(currently_pending)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue