Variable: newsticker-hide-old-feed-header

newsticker-hide-old-feed-header is a customizable variable defined in newst-plainview.el.gz.

Value

nil

Documentation

Whether to automatically hide the header of old feeds.

This hides the headers of feeds whose items are all old or obsolete in the *newsticker* buffer. This is only visually interesting if the content of those feeds are also hidden (see newsticker-hide-old-items-in-newsticker-buffer and newsticker-show-descriptions-of-new-items).

This variable was added, or its default value changed, in Emacs 31.1.

Probably introduced at or before Emacs version 31.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defcustom newsticker-hide-old-feed-header
  nil
  "Whether to automatically hide the header of old feeds.
This hides the headers of feeds whose items are all old or obsolete
in the *newsticker* buffer.  This is only visually interesting if
the content of those feeds are also hidden (see
`newsticker-hide-old-items-in-newsticker-buffer' and
`newsticker-show-descriptions-of-new-items')."
  :type 'boolean
  :set #'newsticker--set-customvar-buffer
  :version "31.1"
  :group 'newsticker-plainview)