Function: projectile-read-variable
projectile-read-variable is a byte-compiled function defined in
projectile.el.
Signature
(projectile-read-variable)
Documentation
Prompt for a variable and return its name.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;; Editing a project's .dir-locals
(defun projectile-read-variable ()
"Prompt for a variable and return its name."
(completing-read "Variable: "
obarray
(lambda (v)
(and (boundp v) (not (keywordp v))))
t))