* scroll to message body in article/summary view?
@ 2024-10-25 15:55 Eric S Fraga
2024-10-25 17:44 ` Stephen Berman
2024-10-25 18:10 ` dick.r.chiang
0 siblings, 2 replies; 6+ messages in thread
From: Eric S Fraga @ 2024-10-25 15:55 UTC (permalink / raw)
To: ding
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?
Thank you,
eric
--
Eric S Fraga via gnus (Emacs 31.0.50 2024-08-16) on Debian 12.6
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: scroll to message body in article/summary view?
2024-10-25 15:55 scroll to message body in article/summary view? Eric S Fraga
@ 2024-10-25 17:44 ` Stephen Berman
2024-10-26 10:24 ` Robert Pluim
2024-10-28 8:56 ` Eric S Fraga
2024-10-25 18:10 ` dick.r.chiang
1 sibling, 2 replies; 6+ messages in thread
From: Stephen Berman @ 2024-10-25 17:44 UTC (permalink / raw)
To: Eric S Fraga; +Cc: ding
On Fri, 25 Oct 2024 16:55:17 +0100 Eric S Fraga <e.fraga@ucl.ac.uk> 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?
From the Summary buffer `h' (gnus-summary-select-article-buffer) will go
to the message body start at least the first time you type it to make
the Article buffer current (if you then move point lower down in the
message body and type `h' twice, the second one will go the that point
instead of the message body start).
Steve Berman
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: scroll to message body in article/summary view?
2024-10-25 15:55 scroll to message body in article/summary view? Eric S Fraga
2024-10-25 17:44 ` Stephen Berman
@ 2024-10-25 18:10 ` dick.r.chiang
1 sibling, 0 replies; 6+ messages in thread
From: dick.r.chiang @ 2024-10-25 18:10 UTC (permalink / raw)
To: Eric S Fraga; +Cc: ding
(add-function :filter-args (symbol-function 'gnus-article-set-window-start)
(lambda (args) (cons 0 (cdr args))))
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: scroll to message body in article/summary view?
2024-10-25 17:44 ` Stephen Berman
@ 2024-10-26 10:24 ` Robert Pluim
2024-10-28 8:58 ` Eric S Fraga
2024-10-28 8:56 ` Eric S Fraga
1 sibling, 1 reply; 6+ messages in thread
From: Robert Pluim @ 2024-10-26 10:24 UTC (permalink / raw)
To: Stephen Berman; +Cc: Eric S Fraga, ding
>>>>> On Fri, 25 Oct 2024 19:44:00 +0200, Stephen Berman <stephen.berman@gmx.net> said:
Stephen> On Fri, 25 Oct 2024 16:55:17 +0100 Eric S Fraga <e.fraga@ucl.ac.uk> 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
--
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: scroll to message body in article/summary view?
2024-10-25 17:44 ` Stephen Berman
2024-10-26 10:24 ` Robert Pluim
@ 2024-10-28 8:56 ` Eric S Fraga
1 sibling, 0 replies; 6+ messages in thread
From: Eric S Fraga @ 2024-10-28 8:56 UTC (permalink / raw)
To: ding
Response below/inline for email Stephen Berman wrote:
> (original email sent 25 Oct 2024 at 19:44)
>
> From the Summary buffer `h' (gnus-summary-select-article-buffer) will go
Ah, perfect! I do use h quite often but had never actually absorbed the
fact that it moved point to the start of the body of the message!
Thank you,
eric
--
Eric S Fraga via gnus (Emacs 31.0.50 2024-07-16) on Debian 12.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: scroll to message body in article/summary view?
2024-10-26 10:24 ` Robert Pluim
@ 2024-10-28 8:58 ` Eric S Fraga
0 siblings, 0 replies; 6+ messages in thread
From: Eric S Fraga @ 2024-10-28 8:58 UTC (permalink / raw)
To: ding
Response below/inline for email Robert Pluim wrote:
> (original email sent 26 Oct 2024 at 12:24)
>
> 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 <.
Thank you. These work perfectly and somehow missed them when searching
the summary key map.
--
Eric S Fraga via gnus (Emacs 31.0.50 2024-07-16) on Debian 12.0
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-10-28 10:20 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-25 15:55 scroll to message body in article/summary view? Eric S Fraga
2024-10-25 17:44 ` Stephen Berman
2024-10-26 10:24 ` Robert Pluim
2024-10-28 8:58 ` Eric S Fraga
2024-10-28 8:56 ` Eric S Fraga
2024-10-25 18:10 ` dick.r.chiang
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).