leanflutter/hotkey_manager

global, single non-letter key hotkeys e.g `.` or `,` don't work on Windows

wis opened this issue · 1 comments

wis commented
  HotKey(
    KeyCode.comma,
    modifiers: [],
    scope: HotKeyScope.system,
  )

I think the issue is because these characters are not assign to any VK_ key values here:

std::make_pair("comma", 0),
std::make_pair("period", 0),
std::make_pair("slash", 0),

I made some changes to keymap, see #32 (comment)