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

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

Re: Yanking multiple times


From: François Fleuret
Subject: Re: Yanking multiple times
Date: 29 May 2003 10:11:15 +0200
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50

Hi,

> Any other sort of argument, including `C-u' and digits, specifies an
> earlier kill to yank (*note Earlier Kills::).

Oups. Shame on me.

,----
| (defun multiple-yank (&optional n) (interactive "p")
|   (while (> n 0)
|     (setq n (1- n))
|     (yank)))
| 
| (define-key global-map [(control insert)] 'multiple-yank)
`----

Should make <C-insert> do the trick ?

Regards,

-- 
François Fleuret


reply via email to

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