all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Marc Tfardy <m-t-o___CUT__IT@web.de>
To: help-gnu-emacs@gnu.org
Subject: Re: non-continuous selection?
Date: Sun, 01 Mar 2009 19:03:59 +0100	[thread overview]
Message-ID: <71010hFi42v4U1@mid.individual.net> (raw)
In-Reply-To: <315c0113-377f-43fc-b08d-1ceb8e172d94@w34g2000yqm.googlegroups.com>

lakerhy schrieb:
> On Mar 1, 3:31 pm, Marc Tfardy <m-t-o___CUT_...@web.de> wrote:
>> lakerhy schrieb:
>>  > is there any method to get a non-continous selection?
>>  >
>>  > for example, if the text is as following:
>>  >
>>  > 123
>>  > 456
>>  > 789
>>  >
>>  > I want to select 1 5 9 which is not continous or in a rectangle. How
>>  > this could be done?
>>
>> Do you want select "1", then "5" and then "9" and then paste all
>> together at one shot "159"? This small and simple function do this:
>>
>> (defun insert-collected-kill-ring (count)
>>    "Collect COUNT items from kill-ring and insert into buffer."
>>    (interactive "p")
>>    (if (>= (length kill-ring) count)
>>        (progn
>>          (let ((n (- count 1))
>>                (str ""))
>>            (while (>= n 0)
>>              (setq str (concat str (substring-no-properties (nth n
>> kill-ring))))
>>              (setq n (1- n)))
>>            (insert str)))
>>      (error "No enough items in kill-ring")))
>>
>> You must select n piece of text, for each one do "copy" (M-w) and then
>> call insert-collected-kill-ring with numeric argument. For your example:
>> C-u 3 M-x insert-collected-kill-ring.
>>
>> Please note that this function inserts oldest first, but this is often
>> what one expect so you get "159" and not "951".
>>
>> HTH

> Thanks, this ring collection function do help at certain
> circumstances. But most of time, I would like to kill the non-
> continous at one stroke rather than one by one, just like the utility
> provided by ctrl in Windows.

This works only with a mouse and mouse is probably not the first choise
for emacs power user, but you can try the multi-region.el:

http://www.ph.ed.ac.uk/~s0198183/multi-region.el

This works without mouse.

regards
marc




      reply	other threads:[~2009-03-01 18:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-01 11:28 non-continuous selection? lakerhy
2009-03-01 14:31 ` Marc Tfardy
2009-03-01 17:14   ` lakerhy
2009-03-01 18:03     ` Marc Tfardy [this message]

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=71010hFi42v4U1@mid.individual.net \
    --to=m-t-o___cut__it@web.de \
    --cc=help-gnu-emacs@gnu.org \
    /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.