Variable: package-autosuggest-once
package-autosuggest-once is a customizable variable defined in
package-activate.el.gz.
Value
nil
Documentation
Non-nil means show automatic suggestion for each package only once.
If this variable is non-nil, Emacs will show an automatic suggestion to install a certain package only once per session, and will not repeat the suggestion to install the same package until you restart Emacs. The default value is nil, which means show the suggestions as many times as the criteria for suggesting it are fulfilled.
This variable has effect only if package-autosuggest-mode(var)/package-autosuggest-mode(fun) is turned on.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/package-activate.el.gz
(defcustom package-autosuggest-once nil
"Non-nil means show automatic suggestion for each package only once.
If this variable is non-nil, Emacs will show an automatic suggestion
to install a certain package only once per session, and will not repeat
the suggestion to install the same package until you restart Emacs.
The default value is nil, which means show the suggestions as many times
as the criteria for suggesting it are fulfilled.
This variable has effect only if `package-autosuggest-mode' is turned on."
:type 'boolean
:group 'package
:version "31.1")