[Emacs] Add Emacs Package Dev Handbook

This commit is contained in:
Lucien Cartier-Tilet 2022-06-15 21:50:04 +02:00
parent c32ae1347b
commit 218307bf8e
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 9 additions and 0 deletions

View File

@ -6850,6 +6850,15 @@ examples on how to use Elisp functions. ~elisp-demos~ got you covered!
(advice-add 'helpful-update :after #'elisp-demos-advice-helpful-update))
#+end_src
#+begin_src emacs-lisp
(use-package epdh
:straight (epdh :type git
:host github
:repo "alphapapa/emacs-package-dev-handbook"
:build t)
:defer t)
#+end_src
Lets also declare some Elisp-dedicated keybindings, prefixed by a
comma.
#+begin_src emacs-lisp