2 May 05:48
"r", "R"
From: Greg Minshall <minshall <at> acm.org>
Subject: "r", "R"
Newsgroups: gmane.mail.mh-e.user
Date: 2008-05-02 03:52:05 GMT
Subject: "r", "R"
Newsgroups: gmane.mail.mh-e.user
Date: 2008-05-02 03:52:05 GMT
hi. Berkeley Mail (and probably the "mail" that proceeded it), as well
as Brent Welch's exmh, use "r" to reply to sender and "R" to reply to
all senders, receivers, etc. since my fingers have been programmed for
so many years, i wanted "R" to do reply all.
below is my bumbling attempt, in case it is of use to anyone.
cheers, Greg Minshall
----
;; my reply-all function
(defun ggm-mh-reply-all (message &optional includep)
"Reply to a MESSAGE to *all* parties"
(interactive (list
(mh-get-msg-num t)
current-prefix-arg))
(mh-reply message "all" includep))
;; get ggm-mh-reply-all hooked in
(defun ggm-mh-folder-mode-hook ()
"Hook to set key bindings in mh-e"
;; in folder mode, "R" is "reply all"
(local-set-key "R" 'ggm-mh-reply-all)
(remove-hook 'mh-folder-mode-hook 'ggm-mh-folder-mode-hook))
(add-hook 'mh-folder-mode-hook 'ggm-mh-folder-mode-hook)
(defun ggm-mh-show-mode-hook ()
"Hook to set key bindings in mh-e"
;; in show mode, "R" is "reply all"
(Continue reading)
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
RSS Feed