diff options
author | Leon Rische <leon.rische@me.com> | 2020-06-18 20:16:03 +0200 |
---|---|---|
committer | Leon Rische <leon.rische@me.com> | 2020-06-18 20:16:03 +0200 |
commit | ac3f88605eefb24506102ac9555efcf44543af44 (patch) | |
tree | 45c53da6e017f767c73070c52078d4c89d8cd78a /org-fc.el | |
parent | 0f777cf91ca8d64279754805e28f3de73e3f534b (diff) |
Add rating wrapper commands
Diffstat (limited to 'org-fc.el')
-rw-r--r-- | org-fc.el | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -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) |