When I yank text in Emacs 22.1.1 (in its own window on X, in KDE, on Kubuntu), I can't paste it anywhere else. I'm reduced to opening kate to copy the text with ^C. Is there a better way?
|
2
|
|
|
|
|
|
Let's be careful with our definitions here
In my case (on GNOME):
I think this is pretty standard modern Unix behavior. It's also important to note (though you say you're using Emacs in a separate window) that when Emacs is running in a console, it is completely divorced from the system and X clipboards: cut and paste in that case is mediated by the terminal. For example, "Edit->Paste" in your terminal window should act exactly as if you typed the text from the clipboard into the Emacs buffer. |
|||
|
|
|
|
I stick this in my .emacs: (setq x-select-enable-clipboard t) (setq interprogram-paste-function 'x-cut-buffer-or-selection-value) I subsequently have basically no problems cutting and pasting back and forth from anything in Emacs to any other X11 or Gnome application. Bonus: to get these things to happen in Emacs without having to reload your whole .emacs, do C-x e with the cursor just after the close paren of each of those expressions in the .emacs buffer. Good luck! |
||
|
|
|
|
Insert the following into your .emacs file: (setq x-select-enable-clipboard t) |
|||
|
|
|
|
I assume by emacs you are meaning Emacs under X (ie not inside a terminal window). There are two ways:
Clipboard operations available:
|
||
|
|
|
|
This EmacsWiki article explains some issues with copy & pasting under X and how to configure it to work. |
||
|
|
|
|
You might want to specify what platform you are using. Is it on linux, unix, macosx, windows, ms-dos? I believe that for windows it should work. For MacOSX it will get added to the x-windows clipboard, which isn't the same thing as the macosx clipboard. For Linux, it depends on your flavour of window manager, but I believe that x-windows handles it in a nice way on most of them. So, please specify. |
||
|
|
|
|
I always use quick paste -- drag selection in emacs, hit the middle mouse button in target window. (From the reference to kate, I take it you're on linux or similar and probably using emacs in X one way or another.) |
||
|
|
|
|
What I do is to use a good terminal tool (PuTTY on Windows, Konsole or Terminal on Linux) that has copy facilities built-in. In PuTTY, you highlight the text you want with the mouse and then paste it elsewhere. Right-clicking in a PuTTY window pastes the contents of the Windows copy/paste buffer. In Konsole or Terminal on Linux, you highlight what you want then press Shift+Ctrl+C for copy and Shift+Ctrl+V for paste. In the win32 compile of emacs, yanking text does put it on the copy/paste buffer .. most of the time. On Mac OS X, the Apple-key chortcuts work fine, because Terminal traps them. There is no direct way of doing it on the commandline because the shell does not maintain a copy/paste buffer for each application. bash does maintain a copy/paste buffer for itself, and, by default, emacs ^k/^y shortcuts work. |
||
|
|
|
|
Hmm, what platform and what version of emacs are you using? With GNU Emacs 22.1.1 on Windows Vista, it works fine for me. If, by any chance, you are doing this from windows to linux through a RealVNC viewer, make sure you are running "vncconfig -iconic" on the linux box first..... |
||
|
|
