From 6e777a66397659de5e0e15067b440fd7013a2796 Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Wed, 17 Jun 2020 00:50:31 +0300 Subject: [PATCH] Make project file name completion adhere to customization * lisp/progmodes/project.el (project-find-file-in): Bind completion-ignore-case to the value of read-file-name-completion-ignore-case (bug#41902). --- lisp/progmodes/project.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index f3df44fa7ba..22e57b4fe6f 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el @@ -644,6 +644,7 @@ PREDICATE, HIST, and DEFAULT have the same meaning as in (defun project-find-file-in (filename dirs project) "Complete FILENAME in DIRS in PROJECT and visit the result." (let* ((all-files (project-files project dirs)) + (completion-ignore-case read-file-name-completion-ignore-case) (file (funcall project-read-file-name-function "Find file" all-files nil nil filename))) -- 2.39.5