mirror of
https://github.com/stevenilsen123/mac-keyboard-behavior-in-windows.git
synced 2025-12-13 21:45:28 +03:00
Added insertion point movements using SHIFT to enable Mac-like selection behavior
This commit is contained in:
14
mac.ahk
14
mac.ahk
@@ -43,6 +43,10 @@ Ctrl & Tab::AltTab
|
||||
^Right::Send, {End}
|
||||
^Up::Send, ^{Home}
|
||||
^Down::Send, ^{End}
|
||||
+^Left::Send, +{Home}
|
||||
+^Right::Send, +{End}
|
||||
+^Up::Send, +^{Home}
|
||||
+^Down::Send, +^{End}
|
||||
#Left::
|
||||
Suspend, On
|
||||
Send, ^{Left}
|
||||
@@ -52,4 +56,14 @@ return
|
||||
Suspend, On
|
||||
Send, ^{Right}
|
||||
Suspend, Off
|
||||
return
|
||||
+#Left::
|
||||
Suspend, On
|
||||
Send, +^{Left}
|
||||
Suspend, Off
|
||||
return
|
||||
+#Right::
|
||||
Suspend, On
|
||||
Send, +^{Right}
|
||||
Suspend, Off
|
||||
return
|
||||
Reference in New Issue
Block a user