*layers/+spacemacs/spacemacs-editing/packages.el: Enhance the dired sorting #16814
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
There is a file sorting bug when browsering a dir, reproducing steps with
dotspacemacs-distribution 'spacemacs
(not spacemacs-base):$ touch /tmp/a; sleep 1; touch /tmp/b
# create two files in shell, and b is newer than a$ emacs -nw --eval '(custom-set-variables (quote (dired-listing-switches "-alt")))' /tmp/
# start emacs and show /tmp/ in direds
, hydra-dired-quick-sort menu will popup, we remember the files orders in dired buffer (thedired-actual-switches
is-al --sort=extension
now)t
on the hydra menu, the files in dired has no changes (thedired-actual-switches
is-al -t
now)With this patch, behavior follow previous steps will be more naturally on step 3 and step 4.