Function: org-roam--list-files-fd
org-roam--list-files-fd is a byte-compiled function defined in
org-roam.el.
Signature
(org-roam--list-files-fd EXECUTABLE DIR)
Documentation
Return all Org-roam files under DIR, using "fd", provided as EXECUTABLE.
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam.el
(defun org-roam--list-files-fd (executable dir)
"Return all Org-roam files under DIR, using \"fd\", provided as EXECUTABLE."
(let* ((globs (org-roam--list-files-search-globs org-roam-file-extensions))
(extensions (string-join (mapcar (lambda (glob) (concat "-e " (substring glob 2 -1))) globs) " "))
(command (string-join `(,executable "-L" "--type file" ,extensions "." ,dir) " ")))
(org-roam--shell-command-files command)))