Re: scroll to message body in article/summary view?
Robert Pluim <[email protected]> Sat, 26 Oct 2024 12:24:51 +0200
| Newsgroups | gmane.emacs.gnus.general |
|---|---|
| Message-ID | <[email protected]> |
>>>>> On Fri, 25 Oct 2024 19:44:00 +0200, Stephen Berman <[email protected]> said: Stephen> On Fri, 25 Oct 2024 16:55:17 +0100 Eric S Fraga <[email protected]> wrote: >> Hello, >> >> I have colleagues/collaborators that do not understand the use of either >> BCC or LCC and so I receive some emails that have hundreds (literally) >> of recipients. It takes quite some time to scroll down the message to >> find the start. Although I can go to the end and then scroll back up >> (which is what I do), I wonder if there is already a gnus command for >> moving quickly to the message body start? Stephen> From the Summary buffer `h' (gnus-summary-select-article-buffer) will go Stephen> to the message body start at least the first time you type it to make Stephen> the Article buffer current (if you then move point lower down in the Stephen> message body and type `h' twice, the second one will go the that point Stephen> instead of the message body start). Thereʼs no need to go to the Article buffer: < runs the command gnus-summary-beginning-of-article (found in gnus-summary-mode-map), which is an interactive byte-code-function in `gnus-sum.el'. It is bound to <, A b and A <. (gnus-summary-beginning-of-article) Scroll the article back to the beginning. Robert --