doom-files-in: match full path with :match
Instead of just the filename.
This commit is contained in:
parent
8f3f31bac8
commit
79e155a2a8
1 changed files with 2 additions and 2 deletions
|
@ -167,7 +167,7 @@ MATCH is a string regexp. Only entries that match it will be included."
|
|||
(let ((fullpath (expand-file-name file path)))
|
||||
(cond ((file-directory-p fullpath)
|
||||
(when (and (memq type '(t dirs))
|
||||
(string-match-p match file)
|
||||
(string-match-p match fullpath)
|
||||
(not (and filter (funcall filter fullpath)))
|
||||
(not (and (file-symlink-p fullpath)
|
||||
(not follow-symlinks)))
|
||||
|
@ -185,7 +185,7 @@ MATCH is a string regexp. Only entries that match it will be included."
|
|||
:relative-to ,relative-to)
|
||||
rest))))))
|
||||
((and (memq type '(t files))
|
||||
(string-match-p match file)
|
||||
(string-match-p match fullpath)
|
||||
(not (and filter (funcall filter fullpath)))
|
||||
(<= mindepth 0))
|
||||
(push (if relative-to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue