help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: kill-region without modifying the kill ring


From: Emanuel Berg
Subject: Re: kill-region without modifying the kill ring
Date: Sat, 26 Sep 2015 04:07:29 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux)

Jim Newton <jimka.issy@gmail.com> writes:

> It would be nice to have a version of C-W which does
> not effect the kill-ring.

You can do that but it is better to do first C-y
(`yank') and then M-y (`yank-pop').

Then you may like this as well:

(defun yank-pop-back (&optional arg)
  (interactive "*p")
  (yank-pop (if arg (* arg -1) -1)) )

from:

    http://user.it.uu.se/~embe8573/conf/emacs-init/yank-my.el

-- 
underground experts united
http://user.it.uu.se/~embe8573




reply via email to

[Prev in Thread] Current Thread [Next in Thread]