Skip to content

Instantly share code, notes, and snippets.

@kanaihiroki
Created January 2, 2019 06:28
Show Gist options
  • Select an option

  • Save kanaihiroki/5b30a93f36ff71edacedbfb2698c12cc to your computer and use it in GitHub Desktop.

Select an option

Save kanaihiroki/5b30a93f36ff71edacedbfb2698c12cc to your computer and use it in GitHub Desktop.
copy to x11 clipboard when region killed (using xsel)
(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