diff options
author | Case Duckworth | 2021-04-26 15:29:16 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-26 15:29:16 -0500 |
commit | b58676daf84d2210f9a1faea108542303bd0f134 (patch) | |
tree | 3c47d22fdb2b8bb17a22985803afef1275e71f5d | |
parent | Comment out icomplete-mode (diff) | |
download | emacs-b58676daf84d2210f9a1faea108542303bd0f134.tar.gz emacs-b58676daf84d2210f9a1faea108542303bd0f134.zip |
Unbind M-s from paredit-mode-map
It shadows the (slightly more useful (for me (for now))) Isearch map(s).
-rw-r--r-- | init.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/init.el b/init.el index bc9377b..0f20d12 100644 --- a/init.el +++ b/init.el | |||
@@ -836,6 +836,8 @@ if ripgrep is installed, otherwise `consult-grep'." | |||
836 | 836 | ||
837 | (setup (:straight paredit) | 837 | (setup (:straight paredit) |
838 | 838 | ||
839 | ;; I don't use paredit-splice-sexp much, and it stomps on isearch. | ||
840 | (:unbind "M-s") | ||
839 | (defun setup-paredit-mode () | 841 | (defun setup-paredit-mode () |
840 | "Correct weirdnesses and set up paredit mode." | 842 | "Correct weirdnesses and set up paredit mode." |
841 | (paredit-mode +1) | 843 | (paredit-mode +1) |