summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-04-02 11:41:57 -0500
committerCraig Jennings <c@cjennings.net>2026-04-02 11:41:57 -0500
commit34b3e8b802b782c29375d51528dbbe22c5b317d8 (patch)
tree7af5ebbbc4a2c56a4f47477313e6434cd7522bd9
parentc0779b05af9c3b6f2e5bd4383e0116806f5a4a12 (diff)
downloaddotemacs-34b3e8b802b782c29375d51528dbbe22c5b317d8.tar.gz
dotemacs-34b3e8b802b782c29375d51528dbbe22c5b317d8.zip
feat(org): add <cj structure template for daily prep comment blocks
Add org-tempo template expanding <cj TAB to #+begin_src cj: comment blocks.
-rw-r--r--modules/org-babel-config.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/org-babel-config.el b/modules/org-babel-config.el
index 3ed9dabc..b2a930fe 100644
--- a/modules/org-babel-config.el
+++ b/modules/org-babel-config.el
@@ -139,7 +139,9 @@ FLAG is the raw prefix argument passed interactively."
(add-to-list 'org-structure-template-alist '("example" . "example"))
(add-to-list 'org-structure-template-alist '("quote" . "quote"))
(add-to-list 'org-structure-template-alist '("response" . "response"))
- (add-to-list 'org-structure-template-alist '("output" . "output")))
+ (add-to-list 'org-structure-template-alist '("output" . "output"))
+ ;; cj: comment blocks for daily prep annotations
+ (add-to-list 'org-structure-template-alist '("cj" . "src cj: comment")))
;; requires ob-racket, not yet in repositories
;; (add-to-list 'org-structure-template-alist '("sicp" . "src racket :lang sicp"))