Function: project-other-tab-command
project-other-tab-command is an autoloaded, interactive and
byte-compiled function defined in project.el.gz.
Signature
(project-other-tab-command)
Documentation
Run project command, displaying resultant buffer in a new tab.
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
o project-any-command
p project-switch-project
r project-query-replace-regexp
s project-shell
v project-vc-dir
x project-execute-extended-command
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;;###autoload (define-key ctl-x-5-map "p" #'project-other-frame-command)
;;;###autoload
(defun project-other-tab-command ()
"Run project command, displaying resultant buffer in a new tab.
The following commands are available:
\\{project-prefix-map}"
(interactive)
(if (< emacs-major-version 30)
(project--other-place-command '((display-buffer-in-new-tab)))
(project--other-place-prefix 'tab)))