Variable: dirtrack-list

dirtrack-list is a customizable and buffer-local variable defined in dirtrack.el.gz.

Documentation

List for directory tracking.

First item is a regexp that describes where to find the path in a prompt. Second is a number, the regexp group to match.

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

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/dirtrack.el.gz
(defcustom dirtrack-list (list "^emacs \\([a-zA-Z]:.*\\)>" 1)
  "List for directory tracking.
First item is a regexp that describes where to find the path in a prompt.
Second is a number, the regexp group to match."
  :type  '(sexp (regexp  :tag "Prompt Expression")
		(integer :tag "Regexp Group"))
  :local t
  :version "24.1")