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

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

Re: copy-rectangle-to-kill-ring


From: Kevin Rodgers
Subject: Re: copy-rectangle-to-kill-ring
Date: Wed, 10 Jan 2007 01:38:42 -0700
User-agent: Thunderbird 1.5.0.9 (Macintosh/20061207)

Wilmar Igl wrote:
sorry, I don't want to  be a nuisance. However, I'd like to suggest to
include a function to copy a rectangle into the kill ring which is not available at the moment (only copy-rectangle-to-register).

Do you mean "copy a rectangle so that `C-x r y' can insert it"?  Or do
you mean "copy a rectangle so that `C-y' can insert it"?

If the former, this should do the job:

(defun copy-rectangle-as-kill (beg end)
  "Copy rectangular region into `killed-rectangle', but don't delete it.
The rectangle can then be yanked via \\[yank-rectangle]."
  (interactive "r")
  (setq killed-rectangle (extract-rectangle beg end)))

--
Kevin Rodgers
Denver, Colorado, USA





reply via email to

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