summaryrefslogtreecommitdiff
path: root/org-fc-hydra.el
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2020-02-23 13:19:19 +0100
committerLeon Rische <leon.rische@me.com>2020-02-23 13:19:19 +0100
commit8e2670b172c4f37fe6e7d048ba0fd723e21f5453 (patch)
tree1b5ab2f4a7174515d69b10ed34cebc7df0fc3453 /org-fc-hydra.el
parent584b10dfb71243c864c721c0f8fc9384559a6258 (diff)
Fix some checkdoc errors
Diffstat (limited to 'org-fc-hydra.el')
-rw-r--r--org-fc-hydra.el13
1 files changed, 13 insertions, 0 deletions
diff --git a/org-fc-hydra.el b/org-fc-hydra.el
index 0a4e3aa..3f8d61a 100644
--- a/org-fc-hydra.el
+++ b/org-fc-hydra.el
@@ -17,6 +17,15 @@
;; 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 file contains an example for setting up a hydra to interact
+;; with the flashcard system.
+;;
+;;; Code:
+
+(require 'org-fc)
+
(defhydra org-fc-hydra ()
("m" org-fc-dashboard "Dashboard" :exit t)
("r" org-fc-review-all "Start Review")
@@ -34,4 +43,8 @@
("x" (org-fc-type-cloze-init 'context) "Context" :exit t)
("q" nil "Quit" :exit t))
+;;;; Footer
+
(provide 'org-fc-hydra)
+
+;;; org-fc-hydra.el ends here