all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* moving text from one buffer to another
@ 2013-01-18  8:39 drain
  2013-01-18  9:56 ` Filipp Gunbin
  0 siblings, 1 reply; 5+ messages in thread
From: drain @ 2013-01-18  8:39 UTC (permalink / raw)
  To: Help-gnu-emacs


I'd like to know how I could structure this function more elegantly. It
was designed to:

(1) insert the e-mail address and topic of a mail recipient.
(2) insert the body of a message written in my org-mode mail archive.

This is what I have thus far:

(defun custom-compose-mail ()
  (interactive)
  (let ((contact (completing-read 
		  "To: "
		  '(("Foo1" 1) ("Foo2" 2) ("Foo3" 3)
		    ("Foo4" 4) ("Foo5" 5) ("Foo6" 6)
		    ("Foo7" 7) ("Foo8" 8))
		  nil t )))
    (let* ((names '(("Foo1" "foo.bar@aol.com")
		    ("Foo2" "foo2@gmail.com")
 		    ("Foo3" "foo3@gmail.com")
		    ("Foo4" "foo4@gmail.com")
		    ("Foo5" "foo5@yahoo.com")
		    ("Foo6" "foo6@gmail.com")
		    ("Foo7" "foo7@yahoo.com")
                    ("Foo8" "foo8@aol.com"))))
		(setq contact (second (assoc contact names))
		      topic (read-from-minibuffer "Topic: "))
		(compose-mail contact topic)
		(end-of-buffer)
		(newline 1)
                (insert (current-kill 2)))))

When I am done writing a message, I copy it with kill-ring-save. Then a
call the above function interactively with a shortcut. It prompts me for
the name and topic, inserts them into the appropriate fields, then pastes
the copied text into the message body.

I'm comfortable with most of the code, but the way I copy text from the org
archive seems somewhat messy. After a bunch of Google searches,
"current-kill" was the first function that helped me reach my functionality
goals. But it was hardly a learned choice.



--
View this message in context: http://emacs.1067599.n5.nabble.com/moving-text-from-one-buffer-to-another-tp275785.html
Sent from the Emacs - Help mailing list archive at Nabble.com.



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-01-18 13:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-18  8:39 moving text from one buffer to another drain
2013-01-18  9:56 ` Filipp Gunbin
2013-01-18 12:25   ` drain
2013-01-18 13:11     ` Filipp Gunbin
2013-01-18 13:25       ` drain

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.