Remove unused dired-recent package

I haven't used in a while and rely mostly on dired's own history (or something else that keeps track
of this).
This commit is contained in:
Daniel Borchmann 2025-05-29 12:41:07 +02:00
parent adb22bbc1c
commit cc515f8f4f
No known key found for this signature in database
GPG Key ID: 50EA937BF472ADD1

View File

@ -2234,9 +2234,6 @@ Note that this workaround is incomplete, as explained in this comment."
(bind-key "<C-return>" #'dired-w32explore dired-mode-map)) (bind-key "<C-return>" #'dired-w32explore dired-mode-map))
(bind-key "M-RET" #'dired-open-xdg dired-mode-map)) (bind-key "M-RET" #'dired-open-xdg dired-mode-map))
(with-demoted-errors "Non-Fatal Errors (dired-recent): %s"
(dired-recent-mode +1))
;; Gnus support in dired ;; Gnus support in dired
(add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode) (add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode)
@ -2267,12 +2264,6 @@ Note that this workaround is incomplete, as explained in this comment."
(add-to-list 'dired-open-functions (add-to-list 'dired-open-functions
#'dired-open-call-function-by-extension))) #'dired-open-call-function-by-extension)))
(use-package dired-recent
:ensure t
:init (setq dired-recent-max-directories nil)
:commands (dired-recent-mode
dired-recent-open))
(use-package dired-subtree (use-package dired-subtree
:commands (dired-subtree-toggle)) :commands (dired-subtree-toggle))