3
3

More than 5 years have passed since last update.

ターミナル上で動いているEmacsで、選択範囲をXのクリップボードにコピーする

Posted at

ELispをほとんど書いていないので、正しいやり方なのか全然わからないが、とりあえずできた。
ただxselの動作があまり安定しない。短いテキストなら問題ないが・・・

;; Region to X clipboard
(defun paste-to-tmp-file(data)
  (with-temp-buffer
    (insert data)
    (write-file "/tmp/clipboard")))

(defun xclip-add-region()
  (interactive)
  (if (region-active-p)
      (progn
        (paste-to-tmp-file (buffer-substring-no-properties (region-beginning) (region-end)))
        (shell-command "xsel -ib < /tmp/clipboard")
        (message "%s" (shell-command-to-string "cat /tmp/clipboard")))
    (progn
      (message "no region"))))

(bind-key "C-c C-c" 'xclip-add-region)
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3