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
Currently KeyboardUtils.getKeyChar doesn't check the shiftKey attribute of the key event for number keys, so it returns 1 for !, 2 for ", etc. We end up blocking these keys that we will never handle ourselves based on this wrong information. This also means that our g$ mapping working is a complete fluke; we accept $ because we want to handle 4.
This makes me really sad, because I have been throwing all the Gmail special
characters for managing my email into my .vimiumrc and was wondering why # wasn't working for delete and @ didn't work for archiving.
Currently
KeyboardUtils.getKeyChar
doesn't check theshiftKey
attribute of the key event for number keys, so it returns1
for!
,2
for"
, etc. We end up blocking these keys that we will never handle ourselves based on this wrong information. This also means that ourg$
mapping working is a complete fluke; we accept$
because we want to handle4
.This is closely related to #1411. Chromium issue 227231 should make all this pain go away.
The text was updated successfully, but these errors were encountered: