mac win10改键
AutoHotKey win10
^#Left::
Send !{Left}
Return
^#Right::
Send !{Right}
Return
karabiner mac
json
{
"title": "Change mouse buttons (rev 2)",
"rules": [
{
"description": "Change button4,5",
"manipulators": [
{
"type": "basic",
"from": {
"pointing_button": "button4",
"modifiers": {
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "left_arrow",
"modifiers": ["left_command","left_control"]
}
],
"conditions": [
{
"type": "keyboard_type_if",
"keyboard_types": [
"ansi",
"iso"
]
}
]
},
{
"type": "basic",
"from": {
"pointing_button": "button5",
"modifiers": {
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "right_arrow",
"modifiers": ["left_command","left_control"]
}
],
"conditions": [
{
"type": "keyboard_type_if",
"keyboard_types": [
"ansi",
"iso"
]
}
]
}
]
}
]
}
网友评论