From: Pascal Bourguignon <pjb@informatimago.com>
Subject: Re: emacs insert icrement numbers
Date: Thu, 17 Aug 2006 15:58:26 +0200 [thread overview]
Message-ID: <8764grmpkt.fsf@thalassa.informatimago.com> (raw)
In-Reply-To: mailman.5271.1155819472.9609.help-gnu-emacs@gnu.org
Step0ut <step0ut@yahoo.gr> writes:
> Hi everyone,
>
> I am using emacs as an editor for c++ and latex.
> I am using the command Ctrl-xrt to insert rectangles (usually numbers) quite
> often.
> My question is:
> Is it possible to insert numbers that increament in each line?
> e.g. 0
> 1
> 2
> ...
> 99
>
Well I don't have gse-number-rect, and I bet it'll be faster to write
the following than to use google...
(defun insert-numbers (min max)
(interactive "nFrom: \nnTo: ")
(while (<= min max) (insert (format "\n%d " min)) (setq min (+ 1 min))))
0
1
2
3
It's also possible to record the left margin, and to copy it on each line:
(defun insert-numbers (min max)
(interactive "nFrom: \nnTo: ")
(let ((margin (buffer-substring (save-excursion (beginning-of-line) (point))
(point))))
(when (<= min max)
(insert (format "%d " min))
(setq min (+ 1 min))
(while (<= min max)
(insert (format "\n%s%d " margin min))
(setq min (+ 1 min))))))
==> 0
==> 1
==> 2
==> 3
> Alternatively I was also thinking if it is possible to replace an existing
> string (M-x replace-regexp) with an icrement number. It will do the job as
> well.
With latest versions (>=22), you can use \,form in the the substitutions.
For example, select a region and:
M-x replace-regexp RET \(.*\) RET
\,(progn(defvar n 0)(format "%3d " (incf n)))\1 RET
1 NOTE: The most fundamental particles in this product are held
2 together by a "gluing" force about which little is currently known
3 and whose adhesive power can therefore not be permanently
4 guaranteed.
--
__Pascal Bourguignon__ http://www.informatimago.com/
NOTE: The most fundamental particles in this product are held
together by a "gluing" force about which little is currently known
and whose adhesive power can therefore not be permanently
guaranteed.
next prev parent reply other threads:[~2006-08-17 13:58 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.5271.1155819472.9609.help-gnu-emacs@gnu.org>
2006-08-17 13:23 ` emacs insert icrement numbers wenbinye
2006-08-17 13:31 ` Chris McMahan
2006-08-17 13:53 ` wenbinye
2006-08-17 19:31 ` Chris McMahan
2006-08-17 13:58 ` Pascal Bourguignon [this message]
2006-08-17 19:34 ` Chris McMahan
2006-08-17 21:58 ` Jim Ottaway
[not found] ` <mailman.5302.1155852315.9609.help-gnu-emacs@gnu.org>
2006-08-18 6:38 ` David Kastrup
2006-08-17 10:41 Step0ut
2006-08-23 0:37 ` Bill Wohler
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8764grmpkt.fsf@thalassa.informatimago.com \
--to=pjb@informatimago.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).