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
I think its easy to see why src/helpers.coffee is destined to fail horribly.
One example to demonstrate: I try to Toggle comments using Ctrl-/. For that I would have to press Ctrl-Shift-7 as you can see above. It registers Ctrl-?.
I don't know how, but your script somehow catches my Ctrl-Shift-7 (which would be shift+55) and makes it an ? (191) where it should make it an &.
Edit: What is that; If I press # on my keyboard it gets resolved to 3 in the keybinding resolver, but inserted correctly into the text. Something is very very wrong here! 😱
Regarding: atom/atom#2600
@kevinsawicki
Compare US and (for example)

German keyboard layout

I think its easy to see why src/helpers.coffee is destined to fail horribly.
One example to demonstrate: I try to Toggle comments using
Ctrl-/. For that I would have to pressCtrl-Shift-7as you can see above. It registersCtrl-?.I don't know how, but your script somehow catches my
Ctrl-Shift-7(which would beshift+55) and makes it an?(191) where it should make it an&.Edit: What is that; If I press
#on my keyboard it gets resolved to3in the keybinding resolver, but inserted correctly into the text. Something is very very wrong here! 😱