Wednesday, September 3, 2014

autohotkey - How to map Capslock to CTRL+SHIFT+B?


I'm new to AutoHotKey, and I'm trying to map Caps Lock to Ctrl+Shift+B.


My attempt:


Capslock::^+b
return

I have done this by right clicking on the AHK window and editing script, which is in My Documents/Autohotkey.ahk and overwriting the default script with the code above, and refreshing with F5.


Hopefully, that is also the correct way to execute the AHK change.


Additionally, I don't want my Caps Lock to be on when I start typing.


Thanks


Answer



Make sure autohotkey if properly installed on your system.


Open notepad.exe and paste you program into a new blank file.


Save the file then double click on the icon.


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