summaryrefslogtreecommitdiff
path: root/org-fc-keymap-hint.el
blob: 84abec8320730ffe35ea4cf820bef729e1d703fa (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
;;; org-fc-keymap-hint.el --- Key-binding hints for org-fc -*- lexical-binding: t; -*-

;; Copyright (C) 2020-2021  Leon Rische

;; Author: Leon Rische <emacs@leonrische.me>
;; Url: https://www.leonrische.me/pages/org_flashcards.html
;; Package-requires: ((emacs "26.3") (org "9.3"))
;; Version: 0.1.0

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:
;;
;; Shows a message with a list of key bindings during review, this
;; replicates the look & feel of previous hydra-based review process.
;;
;;; Code:

(require 'edmacro)

(require 'org-fc)

(defun org-fc-keymap-hint--symbol-name (name)
  "Remove org-fc- prefixes from symbol NAME."
  (setq name (symbol-name name))
  (cond
   ((string-prefix-p "org-fc-review-" name)
    (substring name 14))
   ((string-prefix-p "org-fc-" name)
    (substring name 7))
   (t name)))

(defun org-fc-keymap-hint (keymap)
  "Generate key-binding hints string for KEYMAP."
  (mapconcat
   (lambda (key)
     (if (symbolp (cdr key))
         (format
          "[%s] %s"
          (edmacro-format-keys (list (car key)))
          (if (symbolp (cdr key))
              (org-fc-keymap-hint--symbol-name (cdr key))
            (cdr key)))))
   (reverse (cdr keymap))
   " "))

(add-hook 'org-fc-review-flip-mode-hook
          (lambda () (message (org-fc-keymap-hint org-fc-review-flip-mode-map))))

(add-hook 'org-fc-review-rate-mode-hook
          (lambda () (message (org-fc-keymap-hint org-fc-review-rate-mode-map))))

;; Overwrite message when review ends
(add-hook 'org-fc-after-review-hook (lambda () (message "")))

;;; Footer

(provide 'org-fc-keymap-hint)

;;; org-fc-keymap-hint.el ends here