Get your taxes done using TurboTax

@deanord, thanks for posting the autohotkey script again.  Seems we have to do it every year.  The last couple of years I had to change the hot key combo used from the one you posted:

^+v::Send {Raw}%clipboard%

 The full list of modifiers is here: https://www.autohotkey.com/docs/Hotkeys.htm#Symbols, ^+v means control-shift-v and is already used by Windows 10 and 11 ("paste plain text") and, apparently, blocked by Intuit along with a regular paste.  I use:

^|v::Send {Raw}%clipboard%

control+alt+v but you can change the characters before the :: to any combination you like to work round Windows or app changes.