vote up 2 vote down star
1

How can I make an emacs command to copy text (to the kill ring) by appending? (Why is there no such built-in command?)

Appending Kills mentions C-M-w (`append-next-kill') which allows me to append with kill commands such as C-d or C-k. But it's for killing texts instead of copying them.

flag

4 Answers

vote up 4 vote down check

Actually, there is such a built in command. C-M-w will append a subsequent copy as well as a kill. So you would mark the region you desire to copy, then type C-M-w followed by M-w and the next C-y will yank the joined kills.

link|flag
vote up 1 vote down

Can append-to-register meet your needs?

link|flag
vote up 1 vote down

Play with a variation of this in your .emacs file...

(defun append-kill-line (&optional arg)
  "Append kill-line to current kill buffer, prefix arg kills from beginning of line."
  (interactive "P")
  (append-next-kill)
  (kill-line arg)
)

(define-key global-map "\C-x\C-m" 'append-kill-line)
link|flag
vote up 0 vote down

The various kill commands use a little trick to decide whether or not to append. If the previous command is the same as the current command, it will append; if not, it doesn't. The functions use the value of last-command to do this, and manipulating this value is key to getting what you want.

(defun copy-region-as-kill-append (beg end)
  (interactive "r")
  (let ((last-command 'kill-region))
    (copy-region-as-kill beg end)))
link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.