Is there a way for AutoHotKey to re-map the functionality Shift+Ctrl+← or → arrow (which highlights everything to the left/right) to Shift+Alt+← or →?
Coming from a Mac I'm so used to having the CMD button next to the space bar and I prefer it that way..
Answer
; "LShift + LAlt + Left" to "Shift + Ctrl + Left"
<+; "LShift + LAlt + Right" to "Shift + Ctrl + Right"
<+
- "<+" is the modifier symbol for the LShift and "<"!" for the LAlt key.
- Modifier symbols are used only in key combinations for modifying
other keys (in this case the keys left and right arrow). - All other LShift + LAlt + Key combinations in the system or programs (if any) remain intact.
https://autohotkey.com/docs/commands/Send.htm
No comments:
Post a Comment