andischerer/atom-keyboard-localization

fr_FR - Linux - Same keyCode sent for different keys

Closed this issue · 2 comments

It looks like the package only listens to the keyDown event.

Can be reproduced in the browser console:

onkeydown = function(e) { console.log(e); }

Pressing '<' and '*' return the same keyEvent, with the same keyCode (220) and the same keyIdentifier (U+00DC).

The only way to differentiate the keys seems to be to use the onkeypress event.

duplicate of #19

should be fixed in v1.4.7