Gnus development mailing list
 help / color / mirror / Atom feed
* Integrating Gnus into Emacs
@ 1998-05-27 20:27 Ralph Schleicher
  1998-05-28  7:50 ` Kai Grossjohann
  0 siblings, 1 reply; 3+ messages in thread
From: Ralph Schleicher @ 1998-05-27 20:27 UTC (permalink / raw)


My girl friend started reading and writing mail using Emacs a few weeks
ago.  Since she is a real Computer/Unix/Emacs novice, I had to replace
the standard Emacs mail commands with Gnus equivalents.  I ended up with
the following code in her personal Emacs initialization file:

;;; Replace the standard mail commands with Gnus equivalents.

(defun gnus-mail ()
  "Start composing a mail."
  (interactive)
  (unless (get-buffer "*Group*")
    (save-window-excursion (gnus)))
  (gnus-group-mail))

(define-key ctl-x-map "m" 'gnus-mail)
(define-key-after menu-bar-tools-menu [rmail]
  '("Read Mail" . gnus) 'gnus)
(define-key-after menu-bar-tools-menu [compose-mail]
  '("Send Mail" . gnus-mail) 'rmail))

Maybe this code is useful for the FAQ.

-- 
Ralph


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

end of thread, other threads:[~1998-05-28  8:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-05-27 20:27 Integrating Gnus into Emacs Ralph Schleicher
1998-05-28  7:50 ` Kai Grossjohann
1998-05-28  8:34   ` Christophe Broult

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 NNTP newsgroup(s).