diff --git a/modules/help/siren-helpful.el b/modules/help/siren-helpful.el index 766802b..80a57e2 100644 --- a/modules/help/siren-helpful.el +++ b/modules/help/siren-helpful.el @@ -14,7 +14,11 @@ ("C-h C" . helpful-command) ("C-h F" . helpful-function) (:map emacs-lisp-mode-map - ("C-c C-d" . helpful-at-point))) + ("C-c C-d" . helpful-at-point)) + + :custom + (helm-describe-function-function 'helpful-function) + (helm-describe-variable-function 'helpful-variable)) (provide 'siren-helpful) ;;; siren-helpful.el ends here diff --git a/modules/navigation/siren-helm.el b/modules/navigation/siren-helm.el old mode 100644 new mode 100755 index 9eac297..621527b --- a/modules/navigation/siren-helm.el +++ b/modules/navigation/siren-helm.el @@ -117,6 +117,13 @@ (helm-M-x-always-save-history t) (helm-M-x-fuzzy-match t)) +(use-package helm-elisp + :straight (helm) + :after (helm-config) + :bind + (:map helm-command-map + ("d" . helm-apropos))) + (use-package helm-files :straight (helm) :after (helm-config)