Hi Julian,
TextEditor triggers a failed assertion on CTRL+<- when the text it contains has leading whitespace.
Here’s how I fixed it:
(juce_TextEditor.cpp:2408)
const int type = getCharacterCategory (t [position - 1 - startOfBuffer]);
=>
int type = 0;
if (position != 0)
type = getCharacterCategory (t [position - 1 - startOfBuffer]);
Thanks.