Function: treemacs--cancel-refresh-timer

treemacs--cancel-refresh-timer is a byte-compiled function defined in treemacs-filewatch-mode.el.

Signature

(treemacs--cancel-refresh-timer)

Documentation

Cancel a the running refresh timer if it is active.

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-filewatch-mode.el
(define-inline treemacs--cancel-refresh-timer ()
  "Cancel a the running refresh timer if it is active."
  (inline-quote
   (when treemacs--refresh-timer
     (cancel-timer treemacs--refresh-timer)
     (setq treemacs--refresh-timer nil))))