aboutsummaryrefslogtreecommitdiff
path: root/modules/prog-training.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-24 16:32:07 -0500
committerCraig Jennings <c@cjennings.net>2026-05-24 16:32:07 -0500
commited721fd35addb35f3660823ae26e82ea1374cf4c (patch)
tree68ca5feeea57af9f4452d7a2136959e48475d945 /modules/prog-training.el
parent1745c383728f501643202408b9e755976950d0cd (diff)
downloaddotemacs-ed721fd35addb35f3660823ae26e82ea1374cf4c.tar.gz
dotemacs-ed721fd35addb35f3660823ae26e82ea1374cf4c.zip
docs(load-graph): classify programming modules
Sixth classification batch: prog-general plus the language modules — prog-c, prog-go, prog-lisp, prog-python, prog-webdev, prog-json, prog-yaml, prog-shell, prog-training. I annotated each header, added a Batch 6 table to the inventory, and extended the validation allowlist. 52 of 102 modules are now classified. prog-general owns the shared defaults and tree-sitter/LSP policy and stays eager. The language modules are eager only by init order and should load by major mode, so they're tagged Phase 6 deferral candidates. prog-shell's after-save executable hook is the one side effect worth scoping. No new hidden dependencies.
Diffstat (limited to 'modules/prog-training.el')
-rw-r--r--modules/prog-training.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/prog-training.el b/modules/prog-training.el
index 9eb5a9a3..41f3053b 100644
--- a/modules/prog-training.el
+++ b/modules/prog-training.el
@@ -1,6 +1,16 @@
;;; prog-training.el --- Training -*- lexical-binding: t; coding: utf-8; -*-
;; author: Craig Jennings <c@cjennings.net>
;;; Commentary:
+;;
+;; Layer: 4 (Optional).
+;; Category: O/D/P.
+;; Load shape: eager.
+;; Eager reason: none; the C-h E / C-h L bindings already autoload their
+;; packages, so the eager require can drop to autoloads in Phase 4.
+;; Top-level side effects: package configuration via use-package (autoloaded).
+;; Runtime requires: none (configures packages via use-package).
+;; Direct test load: yes.
+;;
;; Use C-h E to launch Exercism when you want to fetch or submit practice problems.
;; Use C-h L for LeetCode sessions; the package drops solved files under ~/code/leetcode in Go format.
;; Both bindings autoload their packages, so invoking the key is the whole workflow.