emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/denote 3e074afb4b 2/6: feat: follow-symlinks


From: ELPA Syncer
Subject: [elpa] externals/denote 3e074afb4b 2/6: feat: follow-symlinks
Date: Mon, 21 Nov 2022 22:57:31 -0500 (EST)

branch: externals/denote
commit 3e074afb4b96822c9f792f34970f84ae4b251a12
Author: Noboru Ota <me@nobiot.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    feat: follow-symlinks
    
    Currently, the "do-or-create" functions do not show files under a
    subdirectory that is symlinked to another directory outside
    'denote-directory'.  This patch enable Denote to recognize files in
    symlinked directories and thus lets users more flexible directory
    arrangements.
---
 denote.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/denote.el b/denote.el
index b472d207d7..9f9e2932b5 100644
--- a/denote.el
+++ b/denote.el
@@ -661,7 +661,8 @@ value, as explained in its doc string."
         ((when-let ((regexp denote-excluded-directories-regexp))
            (not (string-match-p regexp f))))
         ((file-readable-p f))
-        (t)))))))
+        (t)))
+     :follow-symlinks))))
 
 (defun denote-directory-text-only-files ()
   "Return list of text files in variable `denote-directory'.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]