diff --git a/README.org b/README.org index 9be0256..b3af89a 100644 --- a/README.org +++ b/README.org @@ -5,7 +5,7 @@ The overlap between Emacs and running a Dungeons & Dragons campaign is... expected? Jotting notes and plans in an org-mode file has been great, but what if, during a game session, my notes became /more interactive/? I started creating some helper functions, which has now become a minor mode I use as a sort of layer on top of Org. Let's blame this insanity on the pandemic, but it has been fun. -The primary interface is =f12= which calls up a /sticky/ Hydra to call my functions, but still allowing full cursor movement (mostly): +The primary interface is =f6= which calls up a /sticky/ Hydra to call my functions, but still allowing full cursor movement (mostly): #+attr_html: :width 800px [[file:images/screenshot-of-hydra.png]] diff --git a/rpgdm.el b/rpgdm.el index dcedb2f..301d4ab 100644 --- a/rpgdm.el +++ b/rpgdm.el @@ -38,7 +38,7 @@ "Minor mode for layering role-playing game master functions over your notes." :lighter " D&D" :keymap (let ((map (make-sparse-keymap))) - (define-key map (kbd "") 'hydra-rpgdm/body) + (define-key map (kbd "") 'hydra-rpgdm/body) map)) (defhydra hydra-rpgdm (:color pink :hint nil)