Created
January 13, 2019 19:51
-
-
Save dariusz-wozniak/6a6987eff74598f67bc7c3e79957c861 to your computer and use it in GitHub Desktop.
Allow pasting text in cmd.exe (AutoHotkey script)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Allow to paste text in command line by cltr+v | |
#IfWinActive ahk_class ConsoleWindowClass | |
^V:: | |
SendInput {Raw}%clipboard% | |
return | |
#IfWinActive |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment