blob: 2059d7b0ebaaf7b5a45079966fa9a419958c6024 (
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 "main-test.org" "main-test-copy.org")
(find "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)
|