美文网首页
AutoHotKey win10改键 (自启动 可以用自带的转为

AutoHotKey win10改键 (自启动 可以用自带的转为

作者: 鸿伟x | 来源:发表于2019-11-13 11:46 被阅读0次

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"
]
}
]
}
]
}
]
}

相关文章

网友评论

      本文标题:AutoHotKey win10改键 (自启动 可以用自带的转为

      本文链接:https://www.haomeiwen.com/subject/cqshictx.html