[hydra] add Emacs documentation commands to CL help hydra

This commit is contained in:
contrapunctus 2021-08-17 14:58:42 +05:30
parent 65d8e8e954
commit 35c841e668
1 changed files with 5 additions and 1 deletions

View File

@ -1692,11 +1692,15 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
("b" slime-eval-buffer "buffer")
("e" slime-eval-defun "defun"))
#+END_SRC
**** documentation
**** help
#+BEGIN_SRC emacs-lisp
(defhydra my-cl-help-hydra (:color blue)
("s" slime-documentation "slime")
("h" slime-documentation-lookup "CLHS")
("l" find-library "library")
("v" helpful-variable "variable")
("f" helpful-function "function")
("k" helpful-key "key")
("m" man "man page"))
#+END_SRC
*** Scheme