From b237b8d7b573730e2ce48bf7ca86eb892c99c776 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Mon, 3 Feb 2025 14:31:29 -0500 Subject: [PATCH] Fixes #11: Prevents help command completion from triggering autoload. --- init.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/init.el b/init.el index a51338f..6b668c1 100644 --- a/init.el +++ b/init.el @@ -456,6 +456,14 @@ ;; increasing their usefulness. (setq apropos-do-all t) +;; Fixes #11: Prevents help command completion from triggering autoload. +;; (e.g., apropos-command, apropos-variable, apropos...) +;; Loading additional files for completion can slow down help commands +;; and may unintentionally execute initialization code from some libraries. +(setq help-enable-completion-autoload nil) +(setq help-enable-autoload nil) +(setq help-enable-symbol-autoload nil) + ;;; Eglot (setq eglot-sync-connect 1