programming hydra - add magit to sub-hydras

This commit is contained in:
contrapunctus 2020-05-28 17:22:51 +05:30
parent 42a0383049
commit b48197aaf8
1 changed files with 5 additions and 3 deletions

View File

@ -24,11 +24,13 @@
("d" (funcall-interactively #'eval-defun t) "Debug")
("c" (cp/compile-elisp-project "cask build") "Compile")
("C" (cp/compile-elisp-project "cask clean") "clean")
("t" (cp/compile-elisp-project "cask exec buttercup -L . --traceback pretty") "Test"))
("t" (cp/compile-elisp-project "cask exec buttercup -L . --traceback pretty") "Test")
("m" magit-status "Magit"))
(defhydra cp-cs ()
(defhydra cp-cs (:color blue)
"CHICKEN Scheme"
("r" run-chicken "REPL" :color blue))
("r" run-chicken "REPL")
("m" magit-status "Magit"))
(defhydra cp-prog (:color blue)
("e" cp-el/body "Emacs Lisp")