Variable: project-buffers-viewer

project-buffers-viewer is a customizable variable defined in project.el.gz.

Value

project-list-buffers-buffer-menu

Documentation

Function to use in project-list-buffers to render the list.

It should accept two arguments: PROJECT and FILES-ONLY. The latter means that only file-visiting buffers should be displayed.

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

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
(defcustom project-buffers-viewer 'project-list-buffers-buffer-menu
  "Function to use in `project-list-buffers' to render the list.

It should accept two arguments: PROJECT and FILES-ONLY.  The latter
means that only file-visiting buffers should be displayed."
  :group 'project
  :version "30.1"
  :type '(radio (function-item project-list-buffers-buffer-menu)
                (function-item project-list-buffers-ibuffer)))