Add elisp-demos to lang/emacs-lisp module

This is an extremely useful package which adds little examples to the
help docs for a massive number of elisp functions.

https://github.com/xuchunyang/elisp-demos
This commit is contained in:
Andrew Whatson 2019-03-11 00:16:57 +10:00
parent 8f98e441c0
commit 0a30b4ee4b
2 changed files with 7 additions and 0 deletions

View file

@ -121,6 +121,12 @@ This marks a foldable marker for `outline-minor-mode' in elisp buffers.")
(add-hook 'flycheck-mode-hook #'flycheck-cask-setup nil t))) (add-hook 'flycheck-mode-hook #'flycheck-cask-setup nil t)))
(def-package! elisp-demos
:commands elisp-demos-advice-helpful-update
:init
(advice-add 'helpful-update :after #'elisp-demos-advice-helpful-update))
;; ;;
;; Project modes ;; Project modes

View file

@ -6,6 +6,7 @@
(package! macrostep) (package! macrostep)
(package! overseer) (package! overseer)
(package! elisp-def) (package! elisp-def)
(package! elisp-demos)
(when (featurep! :tools flycheck) (when (featurep! :tools flycheck)
(package! flycheck-cask)) (package! flycheck-cask))