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
(defun copy-to-clipboard () | |
(interactive) | |
(if (region-active-p) | |
(progn (shell-command-on-region | |
(region-beginning) (region-end) | |
"pbcopy") | |
(message "Copied region to clipboard!") | |
(deactivate-mark)) | |
(message "No mark set."))) |