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.
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.
"^" (regexp-opt '("/afs/" "/media/" "/mnt" "/net/" "/tmp_mnt/"))
;; No remote files.
(unless auto-revert-remote-files "\\|^/[^/|:][^/|]+:"))
"Regular expression of directories to be excluded from file notifications."
:group 'auto-revert
:type 'regexp
:version "24.4")