unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Joe Fineman <joe_f@verizon.net>
To: help-gnu-emacs@gnu.org
Subject: Re: copy-line
Date: Sat, 31 Jan 2009 20:18:14 -0500	[thread overview]
Message-ID: <uzlh7lzu1.fsf@verizon.net> (raw)
In-Reply-To: m2d4e32uyg.fsf@gmail.com

Helmut Eller <eller.helmut@gmail.com> writes:

> is there a command (and standard key) to copy the current line?  The
> command should duplicate the text of the current line and move point
> to the copied line.  I think that vi has something like that, and
> occasionally it would be quite useful.
>
> I can write that myself but maybe Emacs has something already and I
> don't know it?  It's also a bit hard to find a free key :-)

I have been using the following kluge extensively for a long time.  I
mainly use it in tables, but it is also useful for duplicating a line
that contains no tabs:

(defun ditto ()
  "In a table, duplicate the entry above."
  (interactive)
  (let ((track-eol) (goal-column (current-column)))
    (skip-chars-backward "^\t\n")
    (setq newplace (point-marker))
    (previous-line 1)
    (setq oldplace (point-marker))
    (skip-chars-forward "^\t\n")
    (setq entry (buffer-substring oldplace (point)))
    (goto-char newplace)
    (skip-chars-forward "^\t\n")
    (delete-region newplace (point))
    (set-mark (point))
    (insert entry)
    )
  )
-- 
---  Joe Fineman    joe_f@verizon.net

||:  It could have been worse -- it could have been me.  :||


  parent reply	other threads:[~2009-02-01  1:18 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-31 18:26 copy-line Helmut Eller
2009-01-31 19:52 ` copy-line Plamen Tanovski
2009-02-01  1:18 ` Joe Fineman [this message]
2009-02-01  2:06 ` copy-line Samuel Wales
2009-02-01  2:09 ` copy-line Andy Stewart
     [not found] ` <mailman.6387.1233454226.26697.help-gnu-emacs@gnu.org>
2009-02-01  8:41   ` copy-line Helmut Eller
2009-02-01 10:17     ` copy-line Peter Dyballa
2009-02-01 10:13 ` copy-line Harald Hanche-Olsen
2009-02-01 11:45   ` copy-line Helmut Eller
2009-02-01 15:40     ` copy-line Harald Hanche-Olsen
  -- strict thread matches above, loose matches on Subject: below --
2012-07-05 19:08 copy-line (& default keychord) Enda
2012-07-24 16:06 ` copy-line Enda
2012-07-24 17:44   ` copy-line Bastien
2012-07-25 18:47   ` copy-line Guido Van Hoecke
     [not found] ` <mailman.5498.1343146029.855.help-gnu-emacs@gnu.org>
2012-07-25 12:31   ` copy-line rfflrccrd
2012-07-25 13:41     ` copy-line Dan Espen
2012-07-25 15:02       ` copy-line Raffaele Ricciardi
2012-07-25 15:06         ` copy-line Raffaele Ricciardi
2012-07-25 13:50     ` copy-line Raffaele Ricciardi

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=uzlh7lzu1.fsf@verizon.net \
    --to=joe_f@verizon.net \
    --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.
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).