Possibly line #58 of this file? Note the difference with lines #110 and #164 of this file. Specifically, the former removes the autocomplete menu's parent, while the latter removes the...
Possibly line #58 of this file? Note the difference with lines #110 and #164 of this file. Specifically, the former removes the autocomplete menu's parent, while the latter removes the autocomplete menu itself.
I haven't run a development build to test this and I'm not really familiar with Tildes' code base, but the difference between .parent().remove() and .remove() on detecting an Escape keypress seems like the first place I would want to look.
Added to gitlab:
https://gitlab.com/tildes/tildes/-/issues/712
Can also confirm this is how it's behaving for me too.
Possibly line #58 of this file? Note the difference with lines #110 and #164 of this file. Specifically, the former removes the autocomplete menu's parent, while the latter removes the autocomplete menu itself.
I haven't run a development build to test this and I'm not really familiar with Tildes' code base, but the difference between
.parent().remove()
and.remove()
on detecting anEscape
keypress seems like the first place I would want to look.