From d34770407ce092501aeca0aee879d0f6ee6f2029 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 14 Sep 2024 02:01:50 -0400 Subject: [PATCH] fix(emacs-lisp): unremap describe-symbol to helpful-symbol The latter can't look up cl types. Rather than remap it globally, allow folks to bind them separately. --- modules/lang/emacs-lisp/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/emacs-lisp/config.el b/modules/lang/emacs-lisp/config.el index 565296720..eeebdc5ce 100644 --- a/modules/lang/emacs-lisp/config.el +++ b/modules/lang/emacs-lisp/config.el @@ -273,7 +273,7 @@ See `+emacs-lisp-non-package-mode' for details.") (global-set-key [remap describe-command] #'helpful-command) (global-set-key [remap describe-variable] #'helpful-variable) (global-set-key [remap describe-key] #'helpful-key) - (global-set-key [remap describe-symbol] #'helpful-symbol) + ;; (global-set-key [remap describe-symbol] #'helpful-symbol) (defun doom-use-helpful-a (fn &rest args) "Force FN to use helpful instead of the old describe-* commands."