-
-
Notifications
You must be signed in to change notification settings - Fork 22k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix various code editor bugs by robustifying text selection #73471
Conversation
69929de
to
26557ec
Compare
bd6f03a
to
1d38fbf
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worth splitting out the queue_redraw
for #71794 into it's own PR, so we can get it fixed for 4.0.
Would be nice to add some unit tests for the CodeEdit changes to ensure this behaviour is covered.
Leaving as draft then until we agree on an implementation. Redrawing bug moved to #73597 |
1d38fbf
to
6f2f789
Compare
Take 2, but the implementation still feels wrong to me. Definitely not final (there's a bug with unindent anyway).
Currently on my mind: Maybe |
So I chatted a little with Paulb, wasn't very exhaustive but I think we observed the following:
And our assumptions for how selections should be, is the following:
Externally, the functions that returned them are documented to "return the place where the selection was initially made". The documentation is correct, but the concept itself is flawed. Not adjusting this position means it might end up outside of the text. So I think it's reasonable to change this function, even though it "works as documented". Therefore, the fix I'm thinking of now is...
Or perhaps only keep the "caret" and the "origin" of a selection, it's enough information; the |
6f2f789
to
1d4ebda
Compare
1d4ebda
to
20a9612
Compare
I've lost interest. This PR went through like 3 overhauls and I prefer to start over at this point. This isn't really salvageable.
I'm thinking of trying to do this first on a simpler playground such as LineEdit. |
Fixes #72797
Most likely Closes #71217
Probably not a good implementation, but a fine starting point. It works correctly so I haven't marked it as draft.
These bugs were caused because of the selections' "pivots". Selections have three properties:
from
,to
, and a "pivot".from
andto
define the borders of the selection, while "pivot" defines which part of the selection to be immovable when you change the selection, with Shift+Up for example.The problem was that
select()
can't change the pivot. It sort of assumes that the text can't change without selections being undone, which is usually true, but not for operations that change the line they are ran on (i.e.unindent_lines()
). But those operations still use it. Because the pivot isn't changed, as the line shrinks down, said pivot might become out of bounds and throw an error when you click it (as clicking is considered dragging until you release the mouse button). It also resulted in weird behavior when using Shift+Arrows (but this is unreported afaik).This PR adds a function called
select_safe()
to TextEdit, which is similar toselect()
but it also allows to pass new selection "pivots". This new function is now used instead ofselect()
with appropriate arguments for all operations that affect the text content of the code editor. This seemed to be the source of the 3rd bug too, although I couldn't replicate it.Why a new function? As it stands, the only other place that can modify these pivots is
set_selection_mode()
which isn't appropriate.