atom/atom-keymap

AltGr-e resolves to e on Swedish keymap - should be €

Closed this issue · 2 comments

altgre

Workaround:

atom.keymaps.addKeystrokeResolver(({event}) => {
  if (event.code === 'KeyE' && event.altKey && event.ctrlKey) {
    return '€'
  }
})

@nathansobo This happens for every non-latin key and might be why we saw reports of AltGraph keys not working at all since the update. If I use Russian layout Ctrl-Alt-o resolves to o making it impossible to use the current keybinding for add project folder.

Closed via #181