up vote 1 down vote favorite
share [g+] share [fb]

How do I make Caps Lock key work as an additional Control key in just one program on Windows?

similar thread for Aquamacs on Mac users

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

AutoHotKey!

Use the bundled window spy to grab the window class, and have a script that looks like:

#IfWinActive, ahk_class [the window class]
CapsLock::LCtrl
#IfWinActive
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.