-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
This package can now be replaced by dired-omit-mode #8
Comments
You need to activate dired-x first: (use-package dired
:ensure nil
:bind
(:map dired-mode-map ("." . dired-omit-mode))
:custom
(dired-omit-files (rx (seq bol ".")))
:hook
(dired-mode . dired-omit-mode)
:init
(with-eval-after-load 'dired (require 'dired-x))) |
Sorry had missed this. I actually switched to using |
I added a deprecation notice. Will make the repository read-only eventually. |
A better regex to use is |
You could argue that, but it's subjective. I personally don't use the The regex I choose matches what this package does which was the goal. |
The text was updated successfully, but these errors were encountered: