Variable: ls-lisp-dirs-first

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

Value

nil

Documentation

Non-nil causes ls-lisp to sort directories first in any ordering.

(Or last if it is reversed.) Follows Microsoft Windows Explorer.

Source Code

;; Defined in /usr/src/emacs/lisp/ls-lisp.el.gz
(defcustom ls-lisp-dirs-first (eq ls-lisp-emulation 'MS-Windows)
  "Non-nil causes ls-lisp to sort directories first in any ordering.
\(Or last if it is reversed.)  Follows Microsoft Windows Explorer."
  ;; Functionality suggested by Chris McMahan <cmcmahan@one.net>
  :set-after '(ls-lisp-emulation)
  :type 'boolean
  :group 'ls-lisp)