Function: treemacs-pulse-on-success

treemacs-pulse-on-success is a byte-compiled function defined in treemacs-visuals.el.

Signature

(treemacs-pulse-on-success &rest LOG-ARGS)

Documentation

Pulse current line with treemacs-on-success-pulse-face.

Optionally issue a log statement with LOG-ARGS.

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-visuals.el
(defsubst treemacs-pulse-on-success (&rest log-args)
  "Pulse current line with `treemacs-on-success-pulse-face'.
Optionally issue a log statement with LOG-ARGS."
  (declare (indent 1))
  (when log-args
    (treemacs-log (apply #'format log-args)))
  (when treemacs-pulse-on-success
    (treemacs--do-pulse 'treemacs-on-success-pulse-face)))