Tuesday, 9 July 2019

windows 7 - Intercept Ctrl and + as Win and +?


Is there an auto hotkey script or some preference somewhere where, in Windows 7, where I can intercept Ctrl and + and replace with Win and +? Also, an equivalent for Ctrl and - being replaced with Win and -.



Answer



In AutoHotKey:


^+::#+ ; Replace Ctrl-[plus] with Win-[plus]

^-::#- ; Do the same with Ctrl-[dash]

Note that the code above does not cover numpad plus and minus. For those, you need the following


^numpadadd::#numpadadd

^numpadsub::#numpadsub

No comments:

Post a Comment

How can I VLOOKUP in multiple Excel documents?

I am trying to VLOOKUP reference data with around 400 seperate Excel files. Is it possible to do this in a quick way rather than doing it m...