Skip to content

Instantly share code, notes, and snippets.

@dariusz-wozniak
Created January 13, 2019 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dariusz-wozniak/6a6987eff74598f67bc7c3e79957c861 to your computer and use it in GitHub Desktop.
Save dariusz-wozniak/6a6987eff74598f67bc7c3e79957c861 to your computer and use it in GitHub Desktop.
Allow pasting text in cmd.exe (AutoHotkey script)
; 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