We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
local function keyCode(key, modifiers) modifiers = modifiers or {} return function() hs.eventtap.event.newKeyEvent(modifiers, string.lower(key), true):post() hs.timer.usleep(1000) hs.eventtap.event.newKeyEvent(modifiers, string.lower(key), false):post() end end local function remapKey(modifiers, key, keyCode) hs.hotkey.bind(modifiers, key, keyCode, nil, keyCode) end remapKey({'eisu'}, 'h', keyCode('left')) remapKey({'eisu'}, 'j', keyCode('down')) remapKey({'eisu'}, 'k', keyCode('up')) remapKey({'eisu'}, 'l', keyCode('right'))
Although it is set like this, it is judged that it is pushed even if you release the eisu key. Please be able to set eisu key etc as modifier key.
The text was updated successfully, but these errors were encountered:
I'm not sure how macOS handles eisu, but I've never seen it referenced anywhere in Carbon as a modifier that can be used like ctrl/alt/shift/opt/cmd.
@asmagill any ideas here?
Sorry, something went wrong.
No branches or pull requests
Although it is set like this, it is judged that it is pushed even if you release the eisu key.
Please be able to set eisu key etc as modifier key.
The text was updated successfully, but these errors were encountered: