From 606e580bd79c41e73b75048f8dd98320a39a13cf Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Wed, 18 Aug 2021 18:21:22 -0500 Subject: Make erc-timestamp intangible --- init.el | 1 + 1 file changed, 1 insertion(+) (limited to 'init.el') diff --git a/init.el b/init.el index 1224930..b5c35de 100644 --- a/init.el +++ b/init.el @@ -301,6 +301,7 @@ (when (boundp 'erc-autojoin-channels-alist) (mapcar #'car erc-autojoin-channels-alist)) erc-server-coding-system '(utf-8 . utf-8) + erc-timestamp-intangible t erc-track-exclude-types (append erc-hide-list '("AWAY" "353" "324" "329" "332" "333" "477")) -- cgit 1.4.1-21-gabe81 From db17cf4d914ba4d40799cbc3bea760a76f2ec4f7 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Wed, 18 Aug 2021 18:21:31 -0500 Subject: Make M-x act like M-X on Emacs 28 --- init.el | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'init.el') 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." set-mark-command-repeat-pop t ) + (when (fboundp 'command-completion-default-include-p) + (setq read-extended-command-predicate + #'command-completion-default-include-p)) + (:global "M-=" count-words "C-w" kill-region-or-backward-word " h" nil ; HELLO takes a long time to load on Windows -- cgit 1.4.1-21-gabe81