Created
June 23, 2021 12:05
-
-
Save pawiromitchel/b69bca5f08cdb445295dc58dcd5183b7 to your computer and use it in GitHub Desktop.
Autohotkey copy text and open in browser
This file contains 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
^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