summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--config.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.org b/config.org
index 566f7c1..124adf6 100644
--- a/config.org
+++ b/config.org
@@ -1579,10 +1579,10 @@ My computer has a small screen, so i find that it's more beneficial for me to sp
 Define a handy function that allows me to do a full text search of every file in my home directory.  For the most part, this works well; ripgrep avoids binary files.  However, in some files with embedded images, it can add a lot of junk to the output.
 
 #+begin_src elisp
-(defun noa/consult-rg-home ()
-  (interactive)
-  (consult-ripgrep "~/"))
-(global-set-key (kbd "<f5>") #'noa/consult-rg-home)
+  (defun noa/consult-rg-home ()
+    (interactive)
+    (consult-ripgrep "~/"))
+  (global-set-key (kbd "M-<menu>") #'noa/consult-rg-home)
 #+end_src
 
 #+begin_src elisp