Function: project-display-buffer

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

Signature

(project-display-buffer BUFFER-OR-NAME)

Documentation

Display BUFFER-OR-NAME in some window, without selecting it.

When called interactively, prompts for a buffer belonging to the current project. Two buffers belong to the same project if their project instances, as reported by project-current in each buffer, are identical.

This function uses display-buffer as a subroutine, which see for how it is determined where the buffer will be displayed.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;;###autoload
(defun project-display-buffer (buffer-or-name)
  "Display BUFFER-OR-NAME in some window, without selecting it.
When called interactively, prompts for a buffer belonging to the
current project.  Two buffers belong to the same project if their
project instances, as reported by `project-current' in each
buffer, are identical.

This function uses `display-buffer' as a subroutine, which see
for how it is determined where the buffer will be displayed."
  (interactive (list (project--read-project-buffer)))
  (display-buffer buffer-or-name))