summaryrefslogtreecommitdiff
path: root/org-fc-hydra.el
diff options
context:
space:
mode:
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