Variable: auto-revert-notify-exclude-dir-regexp

auto-revert-notify-exclude-dir-regexp is a customizable variable defined in autorevert.el.gz.

Value

"^\\(?:/\\(?:afs/\\|m\\(?:edia/\\|nt\\)\\|\\(?:ne\\|tmp_mn\\)t/\\)\\)\\|^/[^/:|][^/|]+:"

Documentation

Regular expression of directories to be excluded from file notifications.

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

View in manual

Probably introduced at or before Emacs version 24.4.

Source Code

;; Defined in /usr/src/emacs/lisp/autorevert.el.gz
(defcustom auto-revert-notify-exclude-dir-regexp
  (concat
   ;; No mounted file systems.
   mounted-file-systems
   ;; No remote files.
   (unless auto-revert-remote-files
     (rx (| "" (: bol "/" (not (any "/:|")) (1+ (not (any "/|"))) ":")))))
  "Regular expression of directories to be excluded from file notifications."
  :group 'auto-revert
  :type 'regexp
  :version "24.4")