Variable: dired-subdir-alist

dired-subdir-alist is a variable defined in dired.el.gz.

Value

nil

Documentation

Alist of listed directories and their buffer positions.

Alist elements have the form (DIRNAME . STARTMARKER), where DIRNAME is the absolute name of the directory and STARTMARKER is a marker at the beginning of DIRNAME.

The order of elements is the reverse of the order in the buffer. If no subdirectories are listed then the alist contains only one element, for the listed directory.

Source Code

;; Defined in /usr/src/emacs/lisp/dired.el.gz
;; The subdirectory names in the next two lists are expanded.
(defvar dired-subdir-alist nil
  "Alist of listed directories and their buffer positions.
Alist elements have the form (DIRNAME . STARTMARKER), where
DIRNAME is the absolute name of the directory and STARTMARKER is
a marker at the beginning of DIRNAME.

The order of elements is the reverse of the order in the buffer.
If no subdirectories are listed then the alist contains only one
element, for the listed directory.")