info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Article buffer, C-c C-f doesn't work, though it's reported in C-h b


From: Brady Trainor
Subject: Re: Article buffer, C-c C-f doesn't work, though it's reported in C-h b
Date: Wed, 24 Sep 2014 19:09:56 -0700
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

Emanuel Berg <embe8573@student.uu.se> writes:

> Brady Trainor <algebrat@uw.edu> writes:
>
>> C-h b in both Summary buffer and Article buffer
>> report binding ... C-c C-f gnus-summary-mail-forward
>> ...
>>
>> But it is only working for me in Summary buffer, not
>> in Article buffer. Can anyone confirm?
>

>
> So you can change that into `C-c C-f' easily.

Sorry for the noise, after hitting send I found a previous discussion in
this very newsgroup, with subject line

,----
| C-c C-f is not bound in Article buffer
`----

(so `G G' in Group buffer to search). 

For reference, Katsumi Yamaoka gives two solutions there (I include them
because I could not see them in a browser at
http://lists.gnu.org/archive/html/info-gnus-english/2007-09/msg00020.html)


,----
| (eval-after-load "gnus-art"
|   '(define-key gnus-article-mode-map "\C-c\C-f" "Som"))
`----

and 

,----
| (defun gnus-article-mail-forward (&optional arg post)
|   "Invoke `gnus-summary-mail-forward' from the article buffer."
|   (interactive "P")
|   (gnus-article-check-buffer)
|   (with-current-buffer gnus-article-current-summary
|     (gnus-summary-mail-forward arg post)))
| 
| (eval-after-load "gnus-art"
|   '(define-key gnus-article-mode-map "\C-c\C-f"
|      'gnus-article-mail-forward))
`----


--
Brady





reply via email to

[Prev in Thread] Current Thread [Next in Thread]