Variable: treemacs--filewatch-index
treemacs--filewatch-index is a variable defined in
treemacs-filewatch-mode.el.
Value
#s(hash-table test equal)
Documentation
Hash of all directories being watched for changes.
A file path is the key, the value is a cons, its car is a list of the treemacs buffers watching that path, its cdr is the watch descriptor.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-filewatch-mode.el
(defvar treemacs--filewatch-index (make-hash-table :size 100 :test 'equal)
"Hash of all directories being watched for changes.
A file path is the key, the value is a cons, its car is a list of the treemacs
buffers watching that path, its cdr is the watch descriptor.")