Variable: projectile--compilation-command-type

projectile--compilation-command-type is a variable defined in projectile.el.

Value

nil

Documentation

Lifecycle command type of the compilation being started, or nil.

Bound by projectile--run-project-cmd for the duration of the call, so projectile-compilation-buffer-name - which compile calls with nothing but the mode name - can tell a test run from a build.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;; Compilation buffers, and resolving a command
;;
;; Where a lifecycle command's output goes and what it's called, plus the
;; per-phase readers that resolve which command to run.


(defvar projectile--compilation-command-type nil
  "Lifecycle command type of the compilation being started, or nil.
Bound by `projectile--run-project-cmd' for the duration of the call, so
`projectile-compilation-buffer-name' - which `compile' calls with nothing
but the mode name - can tell a test run from a build.")