Function: project-other-window-command

project-other-window-command is an autoloaded, interactive and byte-compiled function defined in project.el.gz.

Signature

(project-other-window-command)

Documentation

Run project command, displaying resultant buffer in another window.

The following commands are available:

! project-shell-command
& project-async-shell-command
C-b project-list-buffers
D project-dired
F project-or-external-find-file
G project-or-external-find-regexp
b project-switch-to-buffer
c project-compile
d project-find-dir
e project-eshell
f project-find-file
g project-find-regexp
k project-kill-buffers
m magit-project-status
p project-switch-project
r project-query-replace-regexp
s project-shell
v project-vc-dir
x project-execute-extended-command
C-o project-display-buffer

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;;###autoload
(defun project-other-window-command ()
  "Run project command, displaying resultant buffer in another window.

The following commands are available:

\\{project-prefix-map}
\\{project-other-window-map}"
  (interactive)
  (project--other-place-command '((display-buffer-pop-up-window)
                                  (inhibit-same-window . t))
                                project-other-window-map))