Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider the following situation: N items in the kill ring. The desired item needed to be yanked is item #k

A numerical argument solution won't really do since counting or keeping track of the position of things in the kill ring is annoying.

share|improve this question

3 Answers

up vote 4 down vote accepted

What is the actual question? What's wrong with pressing C-y and then M-y k-times?

share|improve this answer
In general you don't know k. I should have reformulated the question by saying that your kill ring is large and the item that you want is somewhere in it. If you navigate via M-y fast through it you might pass the desired item thus warranting the need for a navigate backward feature. Keeping a counter in your head on the number of times you press M-y is an unlikely thing to do in a day-to-day situation – octi Dec 8 '11 at 15:19
1  
To go back, just use C-u -1 M-y. – choroba Dec 8 '11 at 16:14
Hah! I completely forgot about negative numerical args. I guess this gets the job done. However, I simply hate the way emacs passes numerical args. – octi Dec 8 '11 at 17:33
1  
In this situation, that would be easier to type as M-- M-y. – phils Dec 8 '11 at 22:02

Try the browse-kill-ring+.el script or the other solutions on EmacsWiki.

share|improve this answer
There is also a nice article on emacs-fu. – Daimrod Dec 8 '11 at 10:52

Use Icicles with key C-- C-y, that is, a negative prefix arg to C-y. That completes against the entries in the kill-ring, letting you choose yanks (kills) to insert. It is a multi-command, which means that you can yank as many candidates, as many times as you like, with a single C-- C-y.

While completing against the kill-ring you can also clean up the ring selectively, deleting entries on the fly. And you can sort the completions (the possible yanks) in various ways. And you can type multiple patterns that the completion candidates need to match, in arbitrary match order (progressive completion).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.