all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Teemu Likonen <tlikonen@iki.fi>
To: Thierry Volpiatto <thierry.volpiatto@gmail.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Repeat count for yanking
Date: Tue, 05 Jul 2011 16:42:17 +0300	[thread overview]
Message-ID: <877h7wx2rq.fsf@mithlond.arda> (raw)
In-Reply-To: <87y60c99s4.fsf@gmail.com> (Thierry Volpiatto's message of "Tue,  05 Jul 2011 14:44:43 +0200")

* 2011-07-05T14:44:43+02:00 * Thierry Volpiatto wrote:

> M-: (loop repeat 5 do (progn (yank) (insert "\n")))

Of course we include the newline in the last kill and do this:

    M-: (dotimes (i 4) (yank))

Or use this:

    (defun yank-repeatedly (n)
      (interactive "NHow many times: ")
      (dotimes (i n)
        (yank)))



  reply	other threads:[~2011-07-05 13:42 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-05  9:35 Repeat count for yanking C K Kashyap
2011-07-05 11:13 ` Peter Münster
2011-07-21 21:39   ` Steinar Bang
2011-07-21 21:41     ` Deniz Dogan
2011-07-05 11:46 ` Richard Riley
2011-07-05 12:38   ` Perry Smith
2011-07-05 12:44     ` Thierry Volpiatto
2011-07-05 13:42       ` Teemu Likonen [this message]
2011-07-06  6:26         ` C K Kashyap
2011-07-05 17:09       ` Richard Riley
2011-07-05 17:27       ` Andreas Röhler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=877h7wx2rq.fsf@mithlond.arda \
    --to=tlikonen@iki.fi \
    --cc=help-gnu-emacs@gnu.org \
    --cc=thierry.volpiatto@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.