From 4480ab00518bc4b6c3b3b4385b3d6509b06f6905 Mon Sep 17 00:00:00 2001 From: Lorenzo Giuliani Date: Thu, 3 Oct 2019 21:32:07 +0200 Subject: [PATCH] unquote interactive lambda macros --- modules/lang/org/contrib/+hugo.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/lang/org/contrib/+hugo.el b/modules/lang/org/contrib/+hugo.el index 5f10b844e..cea2e9b4c 100644 --- a/modules/lang/org/contrib/+hugo.el +++ b/modules/lang/org/contrib/+hugo.el @@ -10,9 +10,9 @@ (:prefix ("H" . "hugo") :desc "Subtree or File to Md to file" "H" #'org-hugo-export-wim-to-md :desc "File to Md file" "h" #'org-hugo-export-to-md - :desc "Subtree or File to Md to file & open" "O" '(λ! (org-open-file (org-hugo-export-wim-to-md))) - :desc "File to Md file & open" "o" '(λ! (org-open-file (org-hugo-export-to-md))) - :desc "All subtrees (or File) to Md file(s)" "A" '(λ! (org-hugo-export-wim-to-md :all-subtrees)) + :desc "Subtree or File to Md to file & open" "O" (λ! (org-open-file (org-hugo-export-wim-to-md))) + :desc "File to Md file & open" "o" (λ! (org-open-file (org-hugo-export-to-md))) + :desc "All subtrees (or File) to Md file(s)" "A" (λ! (org-hugo-export-wim-to-md :all-subtrees)) :desc "File to a temporary Md buffer" "t" #'org-hugo-export-as-md)))) ;;; +hugo.el ends here