Hi all,
I'm trying to use the "+" key with the hs.hotkey.bind method, and it's causing an error. Seems like "+" isn't listed in the keycodes map...?
I get an error when I run something like the following:
hs.hotkey.bind({"cmd", "ctrl"}, "+", ...)
However, I'm able to do it with "-":
hs.hotkey.bind({"cmd", "ctrl"}, "-", ...) *this works fine
I tried finding the "+" key in the
keycodes.lua file, but to no avail.
Anybody know of a solution?
Thanks!
Wyatt