Variable: ls-lisp-verbosity

ls-lisp-verbosity is a customizable variable defined in ls-lisp.el.gz.

Value

(links uid gid modes)

Documentation

A list of optional file attributes that ls-lisp should display.

It should contain none or more of the symbols: links, uid, gid. A value of nil (or an empty list) means display none of them.

Concepts come from UNIX: links means count of names associated with the file; uid means user (owner) identifier; gid means group identifier; modes means Unix-style permission bits (drwxrwxrwx).

If emulation is MacOS then default is nil; if emulation is MS-Windows then default is (links) if platform is Windows NT/2K, nil otherwise; if emulation is UNIX then default is (links uid); if emulation is GNU then default is (links uid gid).

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/ls-lisp.el.gz
(defcustom ls-lisp-verbosity
  (cond ((eq ls-lisp-emulation 'MacOS) nil)
	((eq ls-lisp-emulation 'MS-Windows)
	 (if (and (fboundp 'w32-using-nt) (w32-using-nt))
	     '(links)))			; distinguish NT/2K from 9x
	((eq ls-lisp-emulation 'UNIX) '(links uid modes)) ; UNIX ls
	(t '(links uid gid modes)))		; GNU ls
  "A list of optional file attributes that ls-lisp should display.
It should contain none or more of the symbols: links, uid, gid.
A value of nil (or an empty list) means display none of them.

Concepts come from UNIX: `links' means count of names associated with
the file; `uid' means user (owner) identifier; `gid' means group
identifier; `modes' means Unix-style permission bits (drwxrwxrwx).

If emulation is MacOS then default is nil;
if emulation is MS-Windows then default is `(links)' if platform is
Windows NT/2K, nil otherwise;
if emulation is UNIX then default is `(links uid)';
if emulation is GNU then default is `(links uid gid)'."
  :set-after '(ls-lisp-emulation)
  ;; Functionality suggested by Howard Melman <howard@silverstream.com>
  :type '(set (const :tag "Show Link Count" links)
	      (const :tag "Show User" uid)
	      (const :tag "Show Group" gid)
              (const :tag "Show Modes" modes))
  :group 'ls-lisp)