diff options
author | Case Duckworth | 2021-08-18 18:21:31 -0500 |
---|---|---|
committer | Case Duckworth | 2021-08-18 18:21:31 -0500 |
commit | db17cf4d914ba4d40799cbc3bea760a76f2ec4f7 (patch) | |
tree | a3d5c14a260095c90635343209dda4609e1f7b70 | |
parent | Make erc-timestamp intangible (diff) | |
download | emacs-db17cf4d914ba4d40799cbc3bea760a76f2ec4f7.tar.gz emacs-db17cf4d914ba4d40799cbc3bea760a76f2ec4f7.zip |
Make M-x act like M-X on Emacs 28
-rw-r--r-- | init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/init.el b/init.el index b5c35de..0cd9c59 100644 --- a/init.el +++ b/init.el | |||
@@ -801,6 +801,10 @@ like a dumbass." | |||
801 | set-mark-command-repeat-pop t | 801 | set-mark-command-repeat-pop t |
802 | ) | 802 | ) |
803 | 803 | ||
804 | (when (fboundp 'command-completion-default-include-p) | ||
805 | (setq read-extended-command-predicate | ||
806 | #'command-completion-default-include-p)) | ||
807 | |||
804 | (:global "M-=" count-words | 808 | (:global "M-=" count-words |
805 | "C-w" kill-region-or-backward-word | 809 | "C-w" kill-region-or-backward-word |
806 | "<help> h" nil ; HELLO takes a long time to load on Windows | 810 | "<help> h" nil ; HELLO takes a long time to load on Windows |