Clean up configuration of dired-subtree

Well, there wasn't any configuration for it right now, but the use-package
statement was hidden in the config section of dired's.  Moved it to the
top-level right now and also bound dired-subtree-cycle.
This commit is contained in:
Daniel - 2020-09-12 09:19:09 +02:00
parent 8d4eaf284c
commit 4ba7bbb9d3
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 5 additions and 1 deletions

View File

@ -1803,7 +1803,8 @@ With given ARG, display files in `db/important-document-path."
([remap beginning-of-buffer] . dired-back-to-top) ([remap beginning-of-buffer] . dired-back-to-top)
([remap end-of-buffer] . dired-jump-to-bottom) ([remap end-of-buffer] . dired-jump-to-bottom)
("<f1>" . nil) ("<f1>" . nil)
("<tab>" . dired-subtree-toggle)) ("<tab>" . dired-subtree-toggle)
("<C-tab>" . dired-subtree-cycle))
:init (progn :init (progn
(setq dired-dwim-target t (setq dired-dwim-target t
dired-listing-switches "-aGFhlv --group-directories-first --time-style=long-iso" dired-listing-switches "-aGFhlv --group-directories-first --time-style=long-iso"
@ -1922,6 +1923,9 @@ With given ARG, display files in `db/important-document-path."
(use-package dired-subtree (use-package dired-subtree
:commands (dired-subtree-toggle)))) :commands (dired-subtree-toggle))))
(use-package dired-subtree
:commands (dired-subtree-toggle))
(use-package find-dired (use-package find-dired
:commands (find-dired) :commands (find-dired)
:init (setq find-ls-option '("-print0 | xargs -0 ls -ld" . "-ld"))) :init (setq find-ls-option '("-print0 | xargs -0 ls -ld" . "-ld")))