Function: project-customize-dirlocals
project-customize-dirlocals is an autoloaded, interactive and
byte-compiled function defined in project.el.gz.
Signature
(project-customize-dirlocals)
Documentation
Run customize-dirlocals in current project's root.
Probably introduced at or before Emacs version 31.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;;###autoload
(defun project-customize-dirlocals ()
"Run `customize-dirlocals' in current project's root."
(interactive)
(customize-dirlocals
(expand-file-name ".dir-locals.el"
(project-root (project-current t)))))