Function: projectile-doctor--set-option
projectile-doctor--set-option is a byte-compiled function defined in
projectile.el.
Signature
(projectile-doctor--set-option OPTION VALUE)
Documentation
Set OPTION to VALUE for this session, the way Customize would.
Says so, since the change doesn't outlive Emacs unless it's saved.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-doctor--set-option (option value)
"Set OPTION to VALUE for this session, the way Customize would.
Says so, since the change doesn\\='t outlive Emacs unless it\\='s saved."
(customize-set-variable option value)
(projectile--message-always
"`%s' set to %s for this session - use %s to keep it"
option value (substitute-command-keys "\\[customize-save-variable]")))