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
{{ message }}
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
This was reported by @zoufahl when developing CSS Code Hints.
In CodeHintManager handleKeyEvent function is this block of code:
} else if (event.type === "keyup") {
if (_inSession(editor)) {
if ((event.keyCode !== 32 && event.ctrlKey) || event.altKey || event.metaKey) {
// End the session if the user presses any key with a modifier (other than Ctrl+Space).
_endSession();
} else ...
The problem is when the code hint session starts on keyup and the user is trying to insert a "{" from a German keyboard (which is Alt+8). Maybe a keybinding lookup would make more sense here. Consult @RaymondLim.
This was reported by @zoufahl when developing CSS Code Hints.
In CodeHintManager
handleKeyEventfunction is this block of code:The problem is when the code hint session starts on keyup and the user is trying to insert a "{" from a German keyboard (which is Alt+8). Maybe a keybinding lookup would make more sense here. Consult @RaymondLim.