You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#4848 introduced the ability to edit space origin for space views with a popup menu displaying suggestions. It would be nice to also have the ability to "tab-autocomplete" within the text edit.
This should be achievable as follows:
use a custom Layouter for the text edit, where the autocomplete suggestion would be appended (with subdued styling) to the text actually entered by the user
use lock_focus(true) to avoid defocusing the text edit with Tab (this entered a \t character instead)
perform the autocomplete when \t is detected
The text was updated successfully, but these errors were encountered:
#4848 introduced the ability to edit space origin for space views with a popup menu displaying suggestions. It would be nice to also have the ability to "tab-autocomplete" within the text edit.
This should be achievable as follows:
lock_focus(true)
to avoid defocusing the text edit withTab
(this entered a\t
character instead)\t
is detectedThe text was updated successfully, but these errors were encountered: