blob: a4f6a307c0ded5aabd0794d236c21d56ce187ef2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
fundamental-mode ;; Available everywhere
(today (format-time-string "%Y-%m-%d"))
(NOW (format-time-string "<%Y-%0m-%0d %a %H:%0M>"))
(yesterday (format-time-string "<%Y-%0m-%0d %a>" (time-subtract nil (* 24 60 60))))
(tomorrow (format-time-string "<%Y-%0m-%0d %a>" (time-add nil (* 24 60 60))))
(mode "-*- mode: " (s mode) " -*-")
org-mode
(title "#+title: "p n "#+date: "(format-time-string "[%Y-%0m-%0d %a %H:%0M]") n)
(subunit "*** " (s title) " [/]" n "**** TODO lesson" p n "**** TODO worked example" p n "**** TODO quick example" p n "**** TODO practice" p)
(eg "(e.g. " p ")")
emacs-lisp-mode
(up "(use-package "p n> ":ensure t" n> (s configuration)")")
(key "(define-key " p " (kbd \""p "\") #'"p")")
(hook "(add-hook '"(s hook-name) " #'" (s function-to-add) ")")
|