Michael H.
Results
1
comments of
Michael H.
Typing ü adds two bytes to self.input in minibuffer.rs instead of just one here (minibuffer.rs:521): ``` InsertChar(ch) => { self.input.insert(self.position, *ch); self.position += 1; } ``` Since position is only...