Can you remap the CapsLock
key in Keymando?
CapsLock
is listed as an available key but when I try a test like:
map "<CapsLock-j>" { alert("CapsLock-j") }
... and hit Reload Config
in the Keymando menu, I get an error dialog that says:
Error Parsing Keymando Config File
undefined method `ctrl' for nil:NilClass
Is there perhaps an abbreviation of CapsLock
? For example, in the available keys, the Control key is just listed as Control
but in the example code it is ctrl
. Is there a similar abbreviation for CapsLock
?
If possible, I would like to use the CapsLock
key as a mode key to implement logic like:
if <CapsLock>
map <j>, <Down>
map <k>, <Up>
# ...etc
end