From e3e0cb7e681ef12b536f6fb28f662f9e02033de2 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 14 May 2018 18:32:26 +0200 Subject: [PATCH] doom/describe-modules: no initial input, instead set default --- core/autoload/help.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/autoload/help.el b/core/autoload/help.el index 4e61a056b..d5e690a26 100644 --- a/core/autoload/help.el +++ b/core/autoload/help.el @@ -92,7 +92,7 @@ in, or d) the module associated with the current major mode (see (list (completing-read "Describe module: " (cl-loop for (module . sub) in (reverse (hash-table-keys doom-modules)) collect (format "%s %s" module sub)) - nil t module)))) + nil t nil nil module)))) (cl-destructuring-bind (category submodule) (mapcar #'intern (split-string module " ")) (unless (doom-module-p category submodule)