Variable: savehist-additional-variables
savehist-additional-variables is a customizable variable defined in
projectile.el.
Value
nil
Documentation
List of additional variables to save.
Each element is a variable that will be persisted across Emacs sessions that use Savehist.
An element may be variable name (a symbol) or a cons cell of the form
(VAR . MAX-SIZE), which means to truncate VAR's value to at most
MAX-SIZE elements (if the value is a list) before saving the value.
The contents of variables should be printable with the Lisp
printer. You don't need to add minibuffer history variables to
this list, all minibuffer histories will be saved automatically
as long as savehist-save-minibuffer-history is non-nil.
User options should be saved with the Customize interface. This
list is useful for saving automatically updated variables that are not
minibuffer histories, such as compile-command or kill-ring.
Probably introduced at or before Emacs version 29.1.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;; savehist-mode - When `savehist-mode' is t, projectile-project-command-history will be saved.
;; See https://github.com/bbatsov/projectile/issues/1637 for more details
(defvar savehist-additional-variables nil)