Variable: treemacs-recenter-after-project-jump

treemacs-recenter-after-project-jump is a customizable variable defined in treemacs-customization.el.

Value

always

Documentation

Decides when to recenter view after moving between projects.

Specifically applies to calling treemacs-next-project and treemacs-previous-project.

Possible values are:
 * nil: never recenter
 * 'always: always recenter
 * 'on-distance: recenter based on treemacs-recenter-distance

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-customization.el
(defcustom treemacs-recenter-after-project-jump 'always
  "Decides when to recenter view after moving between projects.
Specifically applies to calling `treemacs-next-project' and
`treemacs-previous-project'.

Possible values are:
 * nil: never recenter
 * \\='always: always recenter
 * \\='on-distance: recenter based on `treemacs-recenter-distance'"
  :type '(choice (const :tag "Always" always)
                 (const :tag "Based on Distance" on-distance)
                 (const :tag "Never" nil))
  :group 'treemacs)