Created
September 28, 2015 03:19
-
-
Save karronoli/8cca52d7997500e9b2ba to your computer and use it in GitHub Desktop.
Save translated text on google-translate.el
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
(advice-add 'google-translate-paragraph :before | |
(lambda (text face &optional output-format) | |
"Save translated text." | |
(when (equal 'google-translate-translation-face face) | |
(kill-new text nil)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment