Skip to content

misohena/dired-details-r

Repository files navigation

dired-details-r.el - Show Dired Details Right

This Emacs Lisp displays detailed file information to the right of the filename in Dired. However, subsequent improvements have made it possible to display it on the left side and on both sides.

Screenshots

./dired-details-r-anime.gif

Show all:

./dired-details-r-1.png

Hide permissions, link count, user, group (Show size and timestamp only):

./dired-details-r-2.png

Hide all:

./dired-details-r-3.png

Requirements

  • Emacs 27.1

Usage

Put dired-details-r.el under load-path.

In your init.el write:

(with-eval-after-load "dired"
  (require 'dired-details-r)
  (global-dired-details-r-mode))

Key Bindings

  • ”(” : Rotate combination

Customize

Combination of File Information to Display

Details combination list:

(setq dired-details-r-combinations
      '((size-time  . (size time))
        ;;(time-size  . (time size)) ;; Which do you prefer?
        (no-details . ())
        (disabled   . disabled)
        (all        . (size time perms links user group))
        (left-right . (time size filename perms links user group))
        (left       . (time size filename))))

Display Width

  • dired-details-r-max-width
  • dired-details-r-min-filename-width
  • dired-details-r-max-filename-width

Truncate

  • dired-details-r-truncate-lines
  • dired-details-r-truncate-filenames
  • dired-details-r-ellipsis

Faces

  • dired-details-r-today (dired-details-r-date-format)
  • dired-details-r-dot-file

Thumbnail, Icon Support

  • dired-details-r-consider-overlays-before-filename-p

Related Projects

dired-details-s.el
Hide dired details separately

About

Show file details on the right side of the filename in Emacs Dired mode

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published