Variable: find-ls-subdir-switches
find-ls-subdir-switches is a customizable variable defined in
find-dired.el.gz.
Value
"-alb"
Documentation
ls switches for inserting subdirectories in *Find* buffers.
This should contain the "-l" switch.
Use the "-F" or "-b" switches if and only if you also use
them for find-ls-option.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/find-dired.el.gz
(defcustom find-ls-subdir-switches
(if (string-match "-[a-z]*b" (cdr find-ls-option))
"-alb"
"-al")
"`ls' switches for inserting subdirectories in `*Find*' buffers.
This should contain the \"-l\" switch.
Use the \"-F\" or \"-b\" switches if and only if you also use
them for `find-ls-option'."
:version "24.1" ; add -b test
:type 'string
:group 'find-dired)