Let's say you use your home computer for dialing up the system that runs Emacs and Gnus. If your modem is slow, you want to reduce (as much as possible) the amount of data sent over the wires.
gnus-auto-center-summary
nil
to inhibit Gnus from re-centering the summary
buffer all the time. If it is vertical
, do only vertical
re-centering. If it is neither nil
nor vertical
, do both
horizontal and vertical recentering.
gnus-visible-headers
(setq gnus-treat-hide-headers 'head gnus-treat-hide-signature t gnus-treat-hide-citation t)
gnus-use-full-window
nil
, you can make all the windows smaller.
While this doesn't really cut down much generally, it means that you
have to see smaller portions of articles before deciding that you didn't
want to read them anyway.
gnus-thread-hide-subtree
nil
, all threads in the summary buffer will be
hidden initially.
This can also be a predicate specifier (see section 8.14 Predicate Specifiers).
Avaliable predicates are gnus-article-unread-p
and
gnus-article-unseen-p
).
Here's an example:
(setq gnus-thread-hide-subtree '(or gnus-article-unread-p gnus-article-unseen-p))(It's a pretty nonsensical example, since all unseen articles are also unread, but you get my drift.)
gnus-updated-mode-lines
nil
, Gnus will not put information in the buffer mode
lines, which might save some time.
Go to the first, previous, next, last section, table of contents.