summary refs log tree commit diff
path: root/config.org
diff options
context:
space:
mode:
authornoa@gaiwan.org2024-07-28 08:20:09 +0000
committernoa@gaiwan.org2024-07-28 08:20:09 +0000
commitcb03dc8db62fb81800b20219ee8929e555497443 (patch)
treefc1e22b880b61a2b3c8de241258de664ed96a4f2 /config.org
parentc9b8a7d0d08df87e93e17ee4244a4ad79719b1df (diff)
Don't unbind M-x
Diffstat (limited to 'config.org')
-rw-r--r--config.org6
1 files changed, 0 insertions, 6 deletions
diff --git a/config.org b/config.org
index 74a9e36..6623f8e 100644
--- a/config.org
+++ b/config.org
@@ -157,12 +157,6 @@ I make my caps lock a menu key, so i can open the command palette with it:
   (global-set-key (kbd "<menu>") 'execute-extended-command)
 #+end_src
 
-I also unbind ~M-x~ so i can use it as another keybinding.
-
-#+begin_src elisp
-  (global-unset-key (kbd "M-x"))
-#+end_src
-
 It is often useful to be able to run a command while i am already in the process of running a command in the minibuffer.  This is rarely two extended commands; usually it is completion.
 
 #+begin_src elisp