Function: project-list-buffers

project-list-buffers is an autoloaded, interactive and byte-compiled function defined in project.el.gz.

Signature

(project-list-buffers &optional ARG)

Documentation

Display a list of project buffers.

The list is displayed in a buffer named "*Buffer List*".

By default, all project buffers are listed except those whose names start with a space (which are for internal use). With prefix argument ARG, show only buffers that are visiting files.

View in manual

Probably introduced at or before Emacs version 29.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;;###autoload
(defun project-list-buffers (&optional arg)
  "Display a list of project buffers.
The list is displayed in a buffer named \"*Buffer List*\".

By default, all project buffers are listed except those whose names
start with a space (which are for internal use).  With prefix argument
ARG, show only buffers that are visiting files."
  (interactive "P")
  (let ((pr (project-current t)))
    (funcall project-buffers-viewer pr arg)))