Sunday, May 3, 2015

macos - Reassigning the caps lock key on Windows or OS X



How can I remap the Caps Lock key in Windows or OS X? Is there, for example, some way to map caps lock to a key combination like Alt+Tab on Windows or +Tab on OS X?



CAPS LOCK


Answer



You need Autohotkey and this script:



;Deactive CapsLock key 
$CapsLock::

return


Autohotkey is THE most powerful way to do this sort of thing on a WIndows PC. Also see this page for more details on re-mapping CAPS,


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...