別の解決策は、可能であればcliツールを使用することです。
Macでのpbcopy / pbpaste
Cygwinのgetclip / putclip
- Linuxのxsel
- GUI Emacsのx-clipboard(他の人が述べたように、フラグx-select-enable-clipboardをオンにする必要があります)。
このソリューションの利点は、クリップボードを常に使用できることです(たとえば、リモートsshの場合)。
私の答えには2つの部分があります。パート1では、クリップボードを操作する便利なツールをいくつか紹介します。パート2は元の質問に答えます(クリップボードをキルリングに保存します)。
パート1
以下のコードを〜/ .emacsに挿入します。
(setq *is-a-mac* (eq system-type 'darwin))
(setq *cygwin* (eq system-type 'cygwin) )
(setq *linux* (or (eq system-type 'gnu/linux) (eq system-type 'linux)) )
(defun copy-to-x-clipboard ()
(interactive)
(if (region-active-p)
(progn
(cond
((and (display-graphic-p) x-select-enable-clipboard)
(x-set-selection 'CLIPBOARD (buffer-substring (region-beginning) (region-end))))
(t (shell-command-on-region (region-beginning) (region-end)
(cond
(*cygwin* "putclip")
(*is-a-mac* "pbcopy")
(*linux* "xsel -ib")))
))
(message "Yanked region to clipboard!")
(deactivate-mark))
(message "No region active; can't yank to clipboard!")))
(defun paste-from-x-clipboard()
(interactive)
(cond
((and (display-graphic-p) x-select-enable-clipboard)
(insert (x-selection 'CLIPBOARD)))
(t (shell-command
(cond
(*cygwin* "getclip")
(*is-a-mac* "pbpaste")
(t "xsel -ob"))
1))
))
(defun my/paste-in-minibuffer ()
(local-set-key (kbd "M-y") 'paste-from-x-clipboard)
)
(add-hook 'minibuffer-setup-hook 'my/paste-in-minibuffer)
パート2
以下のコードを〜/ .emacsに挿入し、今後は「Mx paste-from-clipboard-and-cc-kill-ring」を使用して貼り付けます。
(defun paste-from-clipboard-and-cc-kill-ring ()
"paste from clipboard and cc the content into kill ring"
(interactive)
(let (str)
(with-temp-buffer
(paste-from-x-clipboard)
(setq str (buffer-string)))
;; finish the paste
(insert str)
;; cc the content into kill ring at the same time
(kill-new str)
))