Function: project-prefix-or-any-command
project-prefix-or-any-command is an autoloaded, interactive and
byte-compiled function defined in project.el.gz.
Signature
(project-prefix-or-any-command)
Documentation
Run the next command in the current project.
Works like project-any-command, but also mixes in the shorter
bindings from project-prefix-map.
Probably introduced at or before Emacs version 30.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;;###autoload
(defun project-prefix-or-any-command ()
"Run the next command in the current project.
Works like `project-any-command', but also mixes in the shorter
bindings from `project-prefix-map'."
(interactive)
(project-any-command project-prefix-map "[execute in %s]:"))