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
Please make the (annoying) code completion popup closable with ESC. It seems that the private _onKeyDownRepeat method of CodeController deals with that popup and these additional lines would do the trick:
if (event.logicalKey ==LogicalKeyboardKey.escape) {
popupController.hide();
returnKeyEventResult.handled;
}
I'm using version 0.2.15.
The text was updated successfully, but these errors were encountered:
Please make the (annoying) code completion popup closable with ESC. It seems that the private
_onKeyDownRepeat
method ofCodeController
deals with that popup and these additional lines would do the trick:I'm using version 0.2.15.
The text was updated successfully, but these errors were encountered: