summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authornoa2025-01-10 17:25:37 +0800
committernoa2025-01-10 17:25:37 +0800
commitc294da3f8047fc8e63d0f5f9880fd9c79e3dc7ff (patch)
tree0d7f7b6d55e7ad372cb59145bfbc73c06636959e /emacs
parent0bf7e57ef34f4c1a9f0d0ba1b2666bc3fc3546f4 (diff)
Use menu key (caps lock) to interface with notes
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 898e767..6ed74a8 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -833,7 +833,8 @@ necessary variables are set."
       (push (current-buffer) org-node--not-yet-saved)
       (run-hooks 'org-node-creation-hook)))
 
-  :bind (("M-s M-f" . org-node-find)
+  :bind (("<menu>" . org-node-find)
+         ("M-s M-f" . org-node-find)
          ("M-s M-i" . org-node-insert-link)
          ("M-s M-g" . org-node-grep))
   )