emacs: change footnote prefix from "C-c f" to "C-c f n"
authorAmin Bandali <bandali@gnu.org>
Sat, 31 Aug 2019 18:44:02 +0000 (14:44 -0400)
committerAmin Bandali <bandali@gnu.org>
Sat, 31 Aug 2019 18:44:02 +0000 (14:44 -0400)
.emacs.d/init.el

index 6aeac4f..c202eea 100644 (file)
@@ -1364,7 +1364,7 @@ This function is intended for use with `ivy-ignore-buffers'."
 
   ;; prefixes for major modes
   (which-key-add-major-mode-key-based-replacements 'message-mode
-    "C-c f"   "footnote")
+    "C-c f n" "footnote")
   (which-key-add-major-mode-key-based-replacements 'org-mode
     "C-c C-v" "org-babel")
   (which-key-add-major-mode-key-based-replacements 'web-mode
@@ -2116,7 +2116,7 @@ https://csclub.uwaterloo.ca/~abandali")
   :bind
   (:map message-mode-map
         :prefix-map b/footnote-prefix-map
-        :prefix "C-c f"
+        :prefix "C-c f n"
         ("a" . footnote-add-footnote)
         ("b" . footnote-back-to-message)
         ("c" . footnote-cycle-style)