I using a lot the "$" lately, and in my (Spanish) keyboard I must press Shift+4 every time, so I decided to use AutoHotkey to make it faster. The idea make it faster by using the "ç" key as I don't use it very often.
ç::
Send $; new use of the key
Return
This works well but sometimes I do need to write "ç" and "Ç", so I tried to add this
!ç::
Send ç ; to get the "ç" back in game
Return
+ç::
Send Ç ;original use of the "ç" key
Return
But it's not working (keep sending $, as "ç" is now "$"). I feel like this should be pretty obvious, but still can't find a solution. Thanks for your time