aboutsummaryrefslogtreecommitdiff
path: root/modules/org-babel-config.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-15 15:10:49 -0500
committerCraig Jennings <c@cjennings.net>2026-05-15 15:10:49 -0500
commitce96fc954d2f7206b74ec55470c778fc9ff40206 (patch)
treed3ea33568682ee74d9da2fbe5932d246944d585d /modules/org-babel-config.el
parent86d1c5d5dba88677ac26fe8eb10cce3198b8a4e9 (diff)
downloaddotemacs-ce96fc954d2f7206b74ec55470c778fc9ff40206.tar.gz
dotemacs-ce96fc954d2f7206b74ec55470c778fc9ff40206.zip
refactor(org-babel): drop redundant cj structure template
Now that yasnippet handles `<cj` + TAB in every buffer including org-mode, the `cj` entry in `org-structure-template-alist` is redundant. I removed it and left a one-line comment pointing to where the marker now lives.
Diffstat (limited to 'modules/org-babel-config.el')
-rw-r--r--modules/org-babel-config.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/org-babel-config.el b/modules/org-babel-config.el
index b2a930fe..bfa31d8f 100644
--- a/modules/org-babel-config.el
+++ b/modules/org-babel-config.el
@@ -139,9 +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"))
- ;; cj: comment blocks for daily prep annotations
- (add-to-list 'org-structure-template-alist '("cj" . "src cj: comment")))
+ (add-to-list 'org-structure-template-alist '("output" . "output")))
+;; <cj is provided by yasnippet at snippets/fundamental-mode/cj-comment-block
+;; so the marker works in every buffer, not just org-mode.
;; requires ob-racket, not yet in repositories
;; (add-to-list 'org-structure-template-alist '("sicp" . "src racket :lang sicp"))