Function: treemacs-update-node

treemacs-update-node is a byte-compiled function defined in treemacs-rendering.el.

Signature

(treemacs-update-node PATH &optional FORCE-EXPAND)

Documentation

Update the node identified by its PATH.

Same as treemacs-do-update-node, but wraps the call in treemacs-save-position.

PATH: Node Path FORCE-EXPAND: Boolean

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-rendering.el
(defun treemacs-update-node (path &optional force-expand)
  "Update the node identified by its PATH.
Same as `treemacs-do-update-node', but wraps the call in
`treemacs-save-position'.

PATH: Node Path
FORCE-EXPAND: Boolean"
  (treemacs-save-position
   (treemacs-do-update-node path force-expand)))