This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Some non-US keyboard layouts not working #37
Closed
Description
Regarding: atom/atom#2600
@kevinsawicki
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! 😱