Created
November 23, 2014 01:28
-
-
Save 0x4a/7c7f0d150184fe4e6089 to your computer and use it in GitHub Desktop.
Copy without formatting - http://www.sakana.fr/blog/2010/09/06/autohotkey-copying-without-formatting/ #ahk
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
^c:: | |
Clipboard = ; Purge Clipboard content | |
Send ^{Ins} ; Send the Ctrl+Insert command | |
ClipWait ; Wait till data is present in the Clipboard | |
Clipboard = %clipboard% ;remove formatting | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment