Function: project-execute-extended-command
project-execute-extended-command is an autoloaded, interactive and
byte-compiled function defined in project.el.gz.
Signature
(project-execute-extended-command)
Documentation
Execute an extended command in project root.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;;###autoload
(defun project-execute-extended-command ()
"Execute an extended command in project root."
(declare (interactive-only command-execute))
(interactive)
(let ((default-directory (project-root (project-current t))))
(call-interactively #'execute-extended-command)))