From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Holger Sparr Newsgroups: gmane.emacs.help Subject: Re: pasting many times Date: Wed, 25 Oct 2006 17:18:00 +0200 Message-ID: References: <1161778696.317614.27570@e3g2000cwe.googlegroups.com> <1161786070.670917.225130@f16g2000cwb.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1161790831 26329 80.91.229.2 (25 Oct 2006 15:40:31 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 25 Oct 2006 15:40:31 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Oct 25 17:40:27 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Gckrj-00082a-3R for geh-help-gnu-emacs@m.gmane.org; Wed, 25 Oct 2006 17:40:27 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gckri-0005Jf-IN for geh-help-gnu-emacs@m.gmane.org; Wed, 25 Oct 2006 11:40:26 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!news.dfncis.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 27 Original-X-Trace: news.dfncis.de Yr/ugUxmJOHRx8h2rVmXtAVrayjVWq/lWQGOP1app3uzSd Mail-Copies-To: never User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:BykGHeoe0EX39z0lWJl65ZjHKRk= Original-Xref: shelby.stanford.edu gnu.emacs.help:142657 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:38278 Archived-At: On 25 Oct 2006, Florian Kaufmann wrote: > Thank you for the lisp code. I'll try it out. > >> Why keep the window all the time when you can easily bury it with one >> key stroke - `q'? > > I guess that's just my taste. When I have a task where I have to > kill/yank a lot of text I like to have the kill ring displayed all the > time. If it isn't displayed all the time, and I want to yank something > I killed earlier, I first have to display the buffer, then visually > search the item i want to yank. If its diplayed all the time, I > visually find the item I want much faster. Right. One idea: (add-hook ' (lambda () (with-current-buffer "*Kill Ring*" (browse-kill-ring-update)))) but I have no clue which hook would serve you best. There does not seem to be a hook like e.g. `post-kill-hook', or does it? Holger