diff options
author | Thanos Apollo <[email protected]> | 2023-12-25 17:31:50 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-12-25 17:31:50 +0200 |
commit | cb3cb61c47ab1108a28538733830895d73b3d3fa (patch) | |
tree | 8458370c4ea39806f15ba64c0bdc1c7fd4e70c69 /gnosis.el | |
parent | 64a848cd000572caebf7068fe17728e6c0c3bf53 (diff) |
gnosis-review: add 0.5 delay
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -240,9 +240,10 @@ Returns a list of the form (ef-increase ef-decrease ef)." (if (equal (nth (- answer 1) choices) user-choice) (progn (gnosis-review--success id) (message "Correct!")) - (message "False"))) - (gnosis-display--correct-answer-mcq id) - (gnosis-display--extra id)) + (message "False")) + (sit-for 0.5) + (gnosis-display--correct-answer-mcq id user-choice) + (gnosis-display--extra id))) (defun gnosis-review-note (id) "Start review for note with value of id ID." |