chieffancypants / angular-hotkeys

Configuration-centric keyboard shortcuts for your Angular apps.
http://chieffancypants.github.io/angular-hotkeys/
MIT License
1.68k stars 254 forks source link

Function key combo: 'f1+m' or 'f2+m' is not working. #253

Closed forspiro closed 7 years ago

forspiro commented 7 years ago

Hi, Combo with Function keys (ex. combo: 'f1+m' or 'f2+m' ) is not working. The combo: 'f1' by itself is working fine, but I need to combine it with another key.

ps: It is not specific for F1 key. It doesn't work for any F1...F12 keys.

Thanks for your help. su

forspiro commented 7 years ago

Solved...

Replaced "+" with a single space " " (combo: 'f1+m' to combo: 'f1 m' ). Now it works.

su