Monday, September 14, 2015

Remap Shift + Ctrl to Shift + Alt with AutoHotKey?


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

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...