Function: projectile-dispatch
projectile-dispatch is an interactive and byte-compiled function
defined in projectile.el.
Signature
(projectile-dispatch)
Documentation
Dispatch menu for Projectile commands.
The switches in the Modifiers group tweak how the commands below run:
--invalidate-cache rebuilds the file cache first (file/dir commands),
--regexp searches for a regexp (the ag/ripgrep search and the
reviewable search/replace), --case-sensitive seeds the reviewable
search/replace case-sensitive, --word makes it match whole words,
--new-process starts a fresh process
(shells), and --display opens the result in another window or frame
(file/buffer/project commands).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-dispatch ()
"Dispatch menu for Projectile commands.
The switches in the Modifiers group tweak how the commands below run:
`--invalidate-cache' rebuilds the file cache first (file/dir commands),
`--regexp' searches for a regexp (the ag/ripgrep search and the
reviewable search/replace), `--case-sensitive' seeds the reviewable
search/replace case-sensitive, `--word' makes it match whole words,
`--new-process' starts a fresh process
(shells), and `--display' opens the result in another window or frame
(file/buffer/project commands)."
(interactive)
;; Loading `transient' is deferred until the menu is first used; this
;; stub is replaced by the real transient prefix on that first call.
(require 'transient)
(projectile--dispatch-define)
(call-interactively 'projectile-dispatch))