Update Lilypond compilation hydra heads

This commit is contained in:
contrapunctus 2022-01-10 10:07:35 +05:30
parent 9ee8302a6b
commit b4429a1e69
1 changed files with 6 additions and 2 deletions

View File

@ -2285,10 +2285,14 @@ With PREFIX argument and CMD not supplied - prompt for command."
** Lilypond
#+BEGIN_SRC emacs-lisp
(defun my-compile-ly (&optional prefix)
(interactive)
(my-compile-project "main.ly" prefix "./mkly dev"))
(my-defhydra my-lilypond-hydra (:color blue)
"Lilypond"
("b" (my-compile-project "main.ly" nil "./mkly dev") "Compile")
("B" (my-compile-project "main.ly" t "./mkly dev") "Compile")
("b" my-compile-ly "Compile")
("B" (my-compile-ly t) "Compile")
("h" my-help-hydra/body "Help")
("E" toggle-debug-on-error "tdoe")