Created
January 2, 2019 06:28
-
-
Save kanaihiroki/5b30a93f36ff71edacedbfb2698c12cc to your computer and use it in GitHub Desktop.
copy to x11 clipboard when region killed (using xsel)
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
| (setq interprogram-cut-function | |
| (lambda (s) | |
| (let ((f (make-temp-file "clip"))) | |
| (append-to-file s nil f) | |
| (call-process "xsel" f nil nil) | |
| (delete-file f)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment