Releases: wwwjfy/Karabiner-Elements
Releases · wwwjfy/Karabiner-Elements
standalone keys + one to many mappings (0.90.92)
standalone keys + one to many mappings (0.90.90)
standalone_keys_delay_milliseconds
is not added to UI, because conflicts are bothering and might not be used very often.
standalone keys + one to many mappings (0.90.86-2)
fixed the case when continuous standalone keys are pressed
standalone keys + one to many mappings (0.90.86)
fixed default standalone key delay value
standalone keys + one to many mappings (0.90.83)
add standalone keys delay to config and UI
standalone keys + one to many mappings (0.90.76)
standalone keys delay milliseconds added to config and UI
Notes: to remove the outdated key in system user defaults, run defaults delete -g StandaloneKey
standalone keys + one to many mappings (0.90.75)
Example:
{
"profiles": [
{
"name": "Default profile",
"selected": true,
"simple_modifications": {
"caps_lock": "left_control"
},
"standalone_keys": {
"caps_lock": "escape"
},
"one_to_many_mappings": {
"left_control": ["left_control", "left_shift", "left_option", "left_command"]
}
}
]
}
standalone keys + one to many mappings (0.90.73)
One-to-many mappings
An attempt to add one-to-many mappings, example configuration:
{
"one_to_many_mappings": {
"left_control": ["left_control", "left_shift", "left_option", "left_command"]
}
}
This is to get the hyper key
.
Caveats
- Fn + xxx may not work as expected
- Multiple devices may not work as expected
Because I myself don't use either of them, if you have problems, I can try to fix
BREAKING CHANGE
The key in standalone_keys
should be the original key on the keyboard, not the one got mapped in simple_modifications
. For example, to map caps lock to control and escape, this
{
"simple_modifications": {
"caps_lock": "left_control"
},
"standalone_keys": {
"left_control": "escape"
}
}
should be changed to
{
"simple_modifications": {
"caps_lock": "left_control"
},
"standalone_keys": {
"caps_lock": "escape"
}
}
standalone keys 0.90.72 (with hyper key)
0.90.72.hyper hyper key
standalone keys 0.90.72
update codesign