Function: project-display-buffer-other-frame

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

Signature

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

Documentation

Display BUFFER-OR-NAME preferably in another frame.

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-other-frame 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-other-frame (buffer-or-name)
  "Display BUFFER-OR-NAME preferably in another frame.
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-other-frame' as a subroutine,
which see for how it is determined where the buffer will be
displayed."
  (interactive (list (project--read-project-buffer)))
  (display-buffer-other-frame buffer-or-name))