Friday, September 3, 2010

How to Enable ctrl+v in cmd Prompt,linux terminal

You will need to first make sure that you have AutoHotkey installed, and then create a new AutoHotkey script or add the following to your existing script.

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




Note: the script doesn’t paste line breaks very well. If you’ve got a better solution for that, feel free to let us know in the comments and we’ll update the post.

ShareThis