summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authornoa2024-11-15 14:09:43 +0800
committernoa2024-11-15 14:09:43 +0800
commite609a2b9e6bb38b6679684819997079bb2d6af82 (patch)
treec436bf1adb20f1dab05d4b522ad8c43efb5321f8 /emacs
parentda56c214fed09d2ed0a62ce8e03f6a182f5c31b2 (diff)
Bind ctrlj search to <f2>
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index debffea..b7e2141 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -760,7 +760,7 @@ The misspelled word is taken from OVERLAY.  WORD is the corrected word."
 (use-package ctrlj
   :load-path "~/Documents/Projects/2024-10-08 Ctrlj"
   :init (global-unset-key (kbd "C-j"))
-  :bind* (("<menu>" . ctrlj/open-note)
+  :bind* (("<f2>" . ctrlj/open-note)
          ("C-j C-j" . ctrlj/open-note)
          ("C-j C-n" . ctrlj/new-note)
          ("C-j C-l" . ctrlj/insert-link-to-note)