branch: elpa/magit commit 2e042b9031ee1eda35ae661b91c1cdb68f989c21 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
magit-ignored-files: Return full file names Like we do for the other `magit-*-files' functions. --- lisp/magit-git.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/magit-git.el b/lisp/magit-git.el index 8a55ce205c7..0924e20000b 100644 --- a/lisp/magit-git.el +++ b/lisp/magit-git.el @@ -1082,7 +1082,7 @@ tracked file." (magit-git-items "diff-files" "-z" "--name-only" "--diff-filter=U")) (defun magit-ignored-files () - (magit-git-items "ls-files" "-z" "--others" "--ignored" + (magit-git-items "ls-files" "-z" "--full-name" "--others" "--ignored" "--exclude-standard" "--directory")) (defun magit-stashed-files (stash)