aboutsummaryrefslogtreecommitdiff
path: root/lisp/magit-git.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-01-27 11:17:54 +0100
committerJonas Bernoulli <jonas@bernoul.li>2025-01-27 11:17:54 +0100
commit2e042b9031ee1eda35ae661b91c1cdb68f989c21 (patch)
treebc0b2a615f2877d221000ff2bdb09d53dc9aa464 /lisp/magit-git.el
parentbdbd8eb7678aabac3036cd9d3b908342f2580956 (diff)
magit-ignored-files: Return full file names
Like we do for the other `magit-*-files' functions.
Diffstat (limited to 'lisp/magit-git.el')
-rw-r--r--lisp/magit-git.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index 8a55ce2..0924e20 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)