All of my favorite things are little AutoHotkey shortcuts. I have several that basically just execute a Regex replace on whatever text is currently highlighted. It's ridiculously convenient to just have those functions ready to go any time. But I started accumulating so many of them, it got to be a problem just remembering all the ones I had and how to trigger them. I had to start finding new ways of keeping them all…
Another interesting trick is to have a capslock layer (or any other "useless" key you may have, but capslock is much easier to reach obviously) with something like: ; ahk v1 code CapsLock:: KeyWait, CapsLock If (A_PriorKey="CapsLock") SetCapsLockState, % GetKeyState("CapsLock","T") ? "Off" : "On" Return #If, GetKeyState("CapsLock", "P") u:: ; convert selection to code in markdown by pressing CapsLock+u SendRaw, ````…
- Key chords: https://gist.github.com/CFiggers/ccb6bc911ee87f423f558368128...
- Right-click menus: https://gist.github.com/CFiggers/96bc37ca468909c9ec83252144c...
Let me know if you have questions. Enjoy!