To enable copy and paste between X11 and emacs in terminal, I installed xclip via M-x package-install
. There is xclip-1.4
in ~/.emacs.d/
with the following files:
xclip-autoloads.el xclip.el xclip.elc xclip-pkg.el xclip-pkg.elc
I also checked the variable load-path
which has "~/.emacs.d/elpa/xclip-1.4/"
.
But when I type M-x xclip-mode
I constantly get Searching for program: xclip, no such file
. Writing (xclip-mode 1)
to ~/.emacs
comes to the same result. Can anyone help me debug this?
xclip
installed? What does(executable-find "xclip")
return? – Oct 11 '18 at 07:07