Add help hydra to SQL hydra

This commit is contained in:
contrapunctus 2022-01-14 13:02:04 +05:30
parent 3b33079d42
commit 7320598352
1 changed files with 3 additions and 2 deletions

View File

@ -2403,7 +2403,7 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
** Help
#+BEGIN_SRC emacs-lisp
(defhydra my-help-hydra (:color blue)
"Help:"
"Help"
("l" find-library "library")
("v" helpful-variable "variable")
("f" helpful-callable "function")
@ -2782,7 +2782,8 @@ Don't try to check if there are files with a certain extension...it will lead to
(my-defhydra my-sql-hydra (:color blue)
"SQL"
("r" sql-sqlite "REPL")
("e" my-sql-eval-hydra/body "eval"))
("e" my-sql-eval-hydra/body "eval")
("h" my-help-hydra/body "Help"))
#+END_SRC
* image-mode