Variable: project-read-file-name-function
project-read-file-name-function is a customizable variable defined in
project.el.gz.
Value
project--read-file-cpd-relative
Documentation
Function to call to read a file name from a list.
For the arguments list, see project--read-file-cpd-relative.
This variable was added, or its default value changed, in Emacs 27.1.
Probably introduced at or before Emacs version 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
(defcustom project-read-file-name-function #'project--read-file-cpd-relative
"Function to call to read a file name from a list.
For the arguments list, see `project--read-file-cpd-relative'."
:type '(choice (const :tag "Read with completion from relative file names"
project--read-file-cpd-relative)
(const :tag "Read with completion from file names"
project--read-file-absolute)
(function :tag "Custom function" nil))
:group 'project
:version "27.1")