Created
July 18, 2015 14:36
-
-
Save flaki/deffce62b318e953f35d to your computer and use it in GitHub Desktop.
Atom on Windows and Hungarian keyboard layout AltGr+<key> keybinding fix - add this to your init.coffee
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your init script | |
# Fixes AltGr problems on Hungarian keyboard layouts in Windows | |
# for characters [ (AltGr+F), < (AltGr+M), \ (AltGr+Q) and { (AltGr+B) | |
atom.keymaps.keyBindings = atom.keymaps.keyBindings.filter((binding, i) -> | |
['ctrl-alt-f','ctrl-alt-q','ctrl-alt-b','ctrl-alt-m'].indexOf(binding.keystrokes) == - 1 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For the love of God thank you so much. You literally saved me man! Thanks!!! It worked for me.