Skip to content

Instantly share code, notes, and snippets.

@pawiromitchel
Created June 23, 2021 12:05
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 pawiromitchel/b69bca5f08cdb445295dc58dcd5183b7 to your computer and use it in GitHub Desktop.
Save pawiromitchel/b69bca5f08cdb445295dc58dcd5183b7 to your computer and use it in GitHub Desktop.
Autohotkey copy text and open in browser
^j::
clipboard := "" ; Start off empty to allow ClipWait to detect when the text has arrived.
Send ^c
ClipWait ; Wait for the clipboard to contain text.
Run chrome.exe %clipboard%
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment