Variable: eshell-ls-date-format

eshell-ls-date-format is a customizable variable defined in em-ls.el.gz.

Value

"%Y-%m-%d"

Documentation

How to display time information in eshell-ls-file.

This is passed to format-time-string as a format string. To display the date using the current locale, use "%b %e".

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-ls.el.gz
;;; User Variables:

(defcustom eshell-ls-date-format "%Y-%m-%d"
  "How to display time information in `eshell-ls-file'.
This is passed to `format-time-string' as a format string.
To display the date using the current locale, use \"%b \ %e\"."
  :version "24.1"
  :type 'string)