Variable: dired-initial-position-hook

dired-initial-position-hook is a customizable variable defined in dired.el.gz.

Value

nil

Documentation

This hook is used to position the point.

It is run by the function dired-initial-position.

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

Source Code

;; Defined in /usr/src/emacs/lisp/dired.el.gz
;; Note this can't simply be run inside function `dired-ls' as the hook
;; functions probably depend on the dired-subdir-alist to be OK.

(defcustom dired-initial-position-hook nil
  "This hook is used to position the point.
It is run by the function `dired-initial-position'."
  :group 'dired
  :type 'hook
  :version "24.4")