Variable: forge-status-buffer-default-topic-filters

forge-status-buffer-default-topic-filters is a customizable variable defined in forge-topics.el.

Value

#s(forge--topics-spec topic t open nil nil nil nil nil nil nil nil nil
		      nil nil newest 200 nil)

Documentation

Filters initially used to limit topics listed in status buffers.

This option controls which topics are listed when initially creating a magit-status-mode buffer. To temporarily change which topics are
listed in a given buffer, instead use C-c C-c (forge-topics-menu) (forge-topics-menu).

To initially list no topics, set the type slot to nil.

This variable was added, or its default value changed, in forge version 0.4.0.

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-topics.el
(defcustom forge-status-buffer-default-topic-filters
  (forge--topics-spec :type 'topic :active t :state 'open :order 'newest)
  "Filters initially used to limit topics listed in status buffers.

This option controls which topics are listed when initially creating
a `magit-status-mode' buffer.  To temporarily change which topics are
listed in a given buffer, instead use \\<forge-topics-mode-map> \
\\[forge-topics-menu] (`forge-topics-menu').

To initially list no topics, set the `type' slot to nil."
  :package-version '(forge . "0.4.0")
  :group 'forge
  :type 'object)