Free cmd/powershell replacement with normal copy paste

command linepastepowershell

I don't know why, but I hate pressing ctrl+v and getting ^V in the powershell and cmd windows.

I always do it and then I have to back space it, out find my mouse, then right click, and select paste. Grrrrrrrrrrrrrr

Is there a (free) fix to this? Some way to say, hey, I want ctrl+V to work like the other 99.999999% of the applications out there!

Best Answer

Easy with Autohotkey:

#IfWinActive ahk_class ConsoleWindowClass
^v::
SendInput {Raw}%clipboard%
return

Save that with an "ahk" extension and run it.

Related Question