From fa60080d686d8d03a0ab2b89203dc9dd9f21789c Mon Sep 17 00:00:00 2001 From: Jonas Bernoulli Date: Tue, 31 Mar 2026 22:45:37 +0200 Subject: magit-gitignore-in-subdir: Expand read directory name --- lisp/magit-gitignore.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/magit-gitignore.el b/lisp/magit-gitignore.el index f83ab77..44858f7 100644 --- a/lisp/magit-gitignore.el +++ b/lisp/magit-gitignore.el @@ -65,7 +65,8 @@ Prompt the user for a directory and add the rule to the tracked, they are shared with other clones of the repository. Also stage the file." :description "shared in subdirectory (path/to/.gitignore)" - (interactive (let ((dir (read-directory-name "Limit rule to files in: "))) + (interactive (let ((dir (expand-file-name + (read-directory-name "Limit rule to files in: ")))) (list (magit-gitignore-read-pattern dir) dir))) (magit--gitignore rule (expand-file-name ".gitignore" directory) t)) -- cgit v1.0