Replies: 2 comments 1 reply
-
Hello, I didn't find it is possible out of the box. After a quick search, I see that the list of files to display is done in filer.lisp, (defun create-directory-children (pathname)
(loop :for pathname :in (list-directory pathname)
… This change includes or excludes dotfiles when setting a global variable: (defvar *show-hidden* t
"If nil, don't show hidden files (dotfiles) in the filer.")
(defun create-directory-children (pathname)
(loop :for pathname :in (list-directory pathname)
:if *show-hidden*
:collect (create-item pathname :open nil) :into res
:if (and (not *show-hidden*)
(not (str:starts-with-p "." (file-namestring pathname))))
:collect (create-item pathname :open nil) :into res
:finally (return res))) Try Probably some stuff could be shared with directory mode (search files with |
Beta Was this translation helpful? Give feedback.
0 replies
-
We surely should define a method (user-extensible), or add hooks. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Checking out Filer in the latest version. Is it possible to hide dot files? If so how?
Beta Was this translation helpful? Give feedback.
All reactions