Function: treemacs-without-following
treemacs-without-following is a macro defined in treemacs-macros.el.
Signature
(treemacs-without-following &rest BODY)
Documentation
Execute BODY with treemacs--ready-to-follow set to nil.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-macros.el
(defmacro treemacs-without-following (&rest body)
"Execute BODY with `treemacs--ready-to-follow' set to nil."
(declare (debug t))
`(let ((treemacs--ready-to-follow nil))
;; ignore because not every module using this macro requires follow-mode.el
(ignore treemacs--ready-to-follow)
,@body))