all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Bastien <bzg@gnu.org>
To: Enda <enda_k2@yahoo.com>
Cc: "help-gnu-emacs@gnu.org" <help-gnu-emacs@gnu.org>
Subject: Re: copy-line
Date: Tue, 24 Jul 2012 19:44:57 +0200	[thread overview]
Message-ID: <87394hdpeu.fsf@gnu.org> (raw)
In-Reply-To: <1343146015.53752.YahooMailNeo@web163101.mail.bf1.yahoo.com> (Enda's message of "Tue, 24 Jul 2012 09:06:55 -0700 (PDT)")

Enda <enda_k2@yahoo.com> writes:

> Usedn't there be a copy-line in Emacs (which would copy the line). In
> Vi, copying a line is yy, what is the shortest way of copying a line
> in Emacs (without writing a lisp function in .emacs)? Should there be
> a default keystroke for copying a line?

What about one of these two?

(defun kill-line-save (&optional arg)
  "Save the rest of the line as if killed, but don't kill it."
  (interactive "P")
  (let ((buffer-read-only t))
    (kill-line arg)
    (message "Line(s) copied to the kill ring")))

(defun copy-line (&optional arg)
  "Copy the current line."
  (interactive "P")
  (copy-region-as-kill
   (point-at-bol)
   (+ (if kill-whole-line 1 0) (point-at-eol arg))))

-- 
 Bastien



  reply	other threads:[~2012-07-24 17:44 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-05 19:08 copy-line (& default keychord) Enda
2012-07-24 16:06 ` copy-line Enda
2012-07-24 17:44   ` Bastien [this message]
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
2012-07-25 18:01 ` copy-line (& default keychord) Andreas Röhler
  -- strict thread matches above, loose matches on Subject: below --
2009-01-31 18:26 copy-line Helmut Eller
2009-01-31 19:52 ` copy-line Plamen Tanovski
2009-02-01  1:18 ` copy-line Joe Fineman
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

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=87394hdpeu.fsf@gnu.org \
    --to=bzg@gnu.org \
    --cc=enda_k2@yahoo.com \
    --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.