From 24f45c85ea0d9ac90e7be96712ac23b3e80bd1d3 Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Sun, 1 Feb 2026 16:14:24 +0100 Subject: [PATCH] Enable 'package-autosuggest-mode' by default * lisp/emacs-lisp/package.el (package-autosuggest-mode): Set :init-value. --- lisp/emacs-lisp/package.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index e01d38c3c9c..23a95c73416 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -4548,7 +4548,7 @@ the existence of a suggestion." ;;;###autoload (define-minor-mode package-autosuggest-mode "Enable the automatic suggestion and installation of packages." - :global t + :global t :init-value t (funcall (if package-autosuggest-mode #'add-hook #'remove-hook) 'after-change-major-mode-hook #'package--autosuggest-after-change-mode))