Is there any way to configure a TextBox so that Ctrl+Backspace will only delete up to the previous operator instead of the previous space?
This applies to Ctrl+ArrowKey based navigation of a string too.
Is there any way to configure a TextBox so that Ctrl+Backspace will only delete up to the previous operator instead of the previous space?
This applies to Ctrl+ArrowKey based navigation of a string too.
I don’t think that’s possible.
I don’t think you can disable the previous functions so you’d probably have to make your own textbox system.
That’s unfortuante. Guess I’ll have to live with it for now.
you probably can’t
Hower you can make a plugin to do that
I’ve managed to make a rudimentary version by disabling TextEditable whilst holding control. Sadly, this doesn’t work with arrow keys.