From 42d61029a914e78a099e8a246aef47e72fc6fd3f Mon Sep 17 00:00:00 2001 From: mez Date: Mon, 23 Jun 2025 20:21:34 +0100 Subject: [PATCH] Add revue category --- custom/capture.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/capture.el b/custom/capture.el index 1e22a9c..797fb38 100644 --- a/custom/capture.el +++ b/custom/capture.el @@ -199,7 +199,7 @@ "Set a category for a website post" (setq thecategory (completing-read "Category: " '("journal memes" "month" "reminding myself how to do stuff" "revues" "tumblr" "writing notes"))) (when (string-match "revues" thecategory) - (setq revtype (completing-read "Type: " '("book" "game" "music" "sight"))) + (setq revtype (completing-read "Type: " '("book" "event" "game" "music" "sight"))) (setq thecategory (concat thecategory "\n:type: " revtype))) (when (string-match "tumblr" thecategory) (setq theop (read-string "OP username: "))