Closed ram535 closed 4 years ago
Maybe you're using an outdated version of org-fc?
An easy way to check if the two review modes are available is do a M-x
and see if org-fc-review-rate-mode
shows up in the list.
If I hit C-h m
(mode help) during review, the major mode is org-mode
and "org-fc-review-flip/rate` is listed as one of the minor modes.
I see. I use general.el for my key bindings. I added this to my configuration and it worked. Thanks.
(general-define-key
:definer 'minor-mode
:states 'normal
:keymaps 'org-fc-review-flip-mode
"RET" 'org-fc-review-flip
"n" 'org-fc-review-flip
"s" 'org-fc-review-suspend-card
"q" 'org-fc-review-quit)
(general-define-key
:definer 'minor-mode
:states 'normal
:keymaps 'org-fc-review-rate-mode
"a" 'org-fc-review-rate-again
"h" 'org-fc-review-rate-hard
"g" 'org-fc-review-rate-good
"e" 'org-fc-review-rate-easy
"s" 'org-fc-review-suspend-card
"q" 'org-fc-review-quit)
In the README says, we should add this config.
But I get this error when added:
It seems like there is not
org-fc-review-rate-mode
andorg-fc-review-flip-mode
.When I am reviewing cards and check the mode, it says
org-mode
.Another alternative solution for evil mode users would be:
if
org-fc-flip-mode
andorg-fc-rate-mode
would exist or detected.