blob: 8e853e3dc942b83fe7140671355f217403599992 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
(load-file "robot/robot.el")
(load-file "org-drill.el")
(defun org-drill-do-drill ()
(copy-file "robot/main-test.org" "robot/main-test-copy.org" t)
(find-file "robot/main-test-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)
|