blob: 66c985c9c75f615d2f91303250aa7cee0dc478fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
(load-file "robot/robot.el")
(load-file "org-drill.el")
(defun org-drill-do-drill ()
(copy "explainer-run.org" "explainer-run-copy.org")
(find "explainer-run-copy.org")
(org-drill)
(set-buffer-modified-p nil)
(kill-buffer)
)
(org-drill-do-drill)
(message "First drill complete")
(setq org-drill-presentation-prompt-with-typing t)
(org-drill-do-drill)
(robot-check-cards-seen-and-die 6)
|