summaryrefslogtreecommitdiff
path: root/org-fc.el
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2020-06-18 20:16:03 +0200
committerLeon Rische <leon.rische@me.com>2020-06-18 20:16:03 +0200
commitac3f88605eefb24506102ac9555efcf44543af44 (patch)
tree45c53da6e017f767c73070c52078d4c89d8cd78a /org-fc.el
parent0f777cf91ca8d64279754805e28f3de73e3f534b (diff)
Add rating wrapper commands
Diffstat (limited to 'org-fc.el')
-rw-r--r--org-fc.el20
1 files changed, 20 insertions, 0 deletions
diff --git a/org-fc.el b/org-fc.el
index 3f8ade6..3c032dd 100644
--- a/org-fc.el
+++ b/org-fc.el
@@ -1770,6 +1770,26 @@ same ID as the current card in the session."
(org-fc-review-quit)
(signal (car err) (cdr err)))))
+(defun org-fc-review-rate-again ()
+ "Rate the card at point with 'again'."
+ (interactive)
+ (org-fc-review-rate-card 'again))
+
+(defun org-fc-review-rate-hard ()
+ "Rate the card at point with 'hard'."
+ (interactive)
+ (org-fc-review-rate-card 'hard))
+
+(defun org-fc-review-rate-good ()
+ "Rate the card at point with 'good'."
+ (interactive)
+ (org-fc-review-rate-card 'good))
+
+(defun org-fc-review-rate-easy ()
+ "Rate the card at point with 'easy'."
+ (interactive)
+ (org-fc-review-rate-card 'easy))
+
(defun org-fc-review-suspend-card ()
"Suspend card and proceed to next."
(interactive)