diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-09-06 13:42:19 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-09-06 13:42:19 +0100 |
commit | 903e201bc8696112cc7d55a78db8477781f96739 (patch) | |
tree | 73324ff36a9297513d05c9bf17516a0a6e537cc1 /.emacs.d | |
parent | a7055e06482c87468382b97c9a1000f251887667 (diff) | |
download | dotfiles-903e201bc8696112cc7d55a78db8477781f96739.tar.gz |
Fix binding clashes
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/lisp/init-paredit.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-paredit.el b/.emacs.d/lisp/init-paredit.el index 9d25b19..73c8267 100644 --- a/.emacs.d/lisp/init-paredit.el +++ b/.emacs.d/lisp/init-paredit.el @@ -99,7 +99,7 @@ (replace-paredit-binding (cdr commands) original-keys new-keys)))) (defun paredit-commands-advice () ;; Default paredit-convolute-sexp binding clashes with xref-find-references - (replace-paredit-binding paredit-commands "M-?" "C-M-?") + (replace-paredit-binding paredit-commands "M-?" "C-c M-?") (nconc paredit-commands '("Extreme Barfage & Slurpage" @@ -127,7 +127,7 @@ (("C-c M-)") paredit-wrap-round-from-behind ("(foo| bar baz" "((| foo) bar baz")) - (("C-c C-d") + (("C-c C-S-d") paredit-duplicate-after-point ("|(foo)" "(foo)\n|(foo)")))) |