Skip to content

Instantly share code, notes, and snippets.

@flaki
Created July 18, 2015 14:36
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flaki/deffce62b318e953f35d to your computer and use it in GitHub Desktop.
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
# 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
)
@iceqapprentice
Copy link

For the love of God thank you so much. You literally saved me man! Thanks!!! It worked for me.

@tiborsaas
Copy link

Saved the day of the 3rd @GreenFox class :)

Copy link

ghost commented Feb 28, 2017

OMG!!! THANKS BRO ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment