Zmieniłem ustawienia klawiatury w Karabinerze, tym razem uprościłem sprawę, z wielu ustawień zostawiłem tylko trzy kombinacje. Resztę bowiem (znaki specjalne) ustawiłem w warstwie w ustawieniach klawiatury ErgoDox EZ. Aktualna lista funkcji przedstawia się następująco:
- RightOption+D=Backspace (Delete One Character Backwards)
- RightOption+H=RightOption+Backspace (Delete One Word Backwards)
- RightOption+Spacebar=Enter/Return
Dalej jest kod ze strony Karabiner Complex Modification
{
"title": "Option To Rule Them All 2",
"rules": [
{
"description": "RightOpt+D=Backspace (Delete One Character Backwards)",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_alt"
]
},
"key_code": "d"
},
"to": [
{
"repeat": true,
"key_code": "delete_or_backspace"
}
]
}
]
},
{
"description": "RightOpt+H=Option+Backspace (Delete One Word Backwards)",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_alt"
]
},
"key_code": "h"
},
"to": [
{
"repeat": true,
"key_code": "delete_or_backspace",
"modifiers": [
"right_alt"
]
}
]
}
]
},
{
"description": "RightOpt+Spacebar=Enter/Return",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_alt"
]
},
"key_code": "spacebar"
},
"to": [
{
"repeat": true,
"key_code": "return_or_enter"
}
]
}
]
}
]
}
Brak komentarzy:
Prześlij komentarz