Fixes #11: Prevents help command completion from triggering autoload.

This commit is contained in:
James Cherti
2025-02-03 14:31:29 -05:00
parent 2a1d40fa96
commit b237b8d7b5

View File

@@ -456,6 +456,14 @@
;; increasing their usefulness. ;; increasing their usefulness.
(setq apropos-do-all t) (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 ;;; Eglot
(setq eglot-sync-connect 1 (setq eglot-sync-connect 1