forked from l3kn/org-fc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
org-fc-type-topic.el
55 lines (38 loc) · 1.61 KB
/
org-fc-type-topic.el
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
;;; org-fc-type-topic.el --- Special card type for passive reading. -*- lexical-binding: t; -*-
;; Copyright (C) 2021 c1-g
;; Author: c1-g <[email protected]>
;; Keywords: extensions
;; 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:
;; This card type is meant to be passively read without active recall
;; then suspended when the reading is done.
;; This card type gets special treatment with the default sorting function.
;; See the documentation of `org-fc-index-sort-cards' for more information.
;;; Code:
(require 'org-fc-core)
(defun org-fc-type-topic-init ()
"Mark headline as card of the topic type."
(interactive)
(org-fc--init-card "topic")
(org-fc-review-data-update '("front")))
(defun org-fc-type-topic-setup (_position)
"Prepare a normal card for review."
(interactive)
;; Make sure the properties drawer is collapsed
(org-fold-show-subtree))
(org-fc-register-type
'topic
'org-fc-type-topic-setup
'ignore
'org-fc-noop)
(provide 'org-fc-type-topic)
;;; org-fc-type-topic.el ends here