楼主:
gyd (阿龙哥)
2016-02-18 04:01:35应该不止能用在surface pro 4就是了
主要是因为之前我的习惯是用macbook
加上typeCover的end home那列不太好用..(瞄不太准..XD)
#CommentFlag //
// alt左 = home, 用这写法chrome才会吃得到, 但也因为这样, 所以shift+home得另外
加一句
!Left::SendInput, {Home}
+!Left::SendInput, +{Home}
!Right::SendInput, {End}
+!Right::SendInput, +{End}
// 个人习惯
!Up::SendInput, {PgUp}
!Down::SendInput, {PgDn}
// win 7 style 切换输入法
^Space::SendInput, ^{Shift}
// 取消chrome中touchpad的zoom in/out, 一直误判很烦, 不如用touch screen pinch
#IfWinActive ahk_class Chrome_WidgetWin_1
{
^WheelDown::return
^WheelUp::return
#MaxHotkeysPerInterval 1000
}