Skip to content

Commit

Permalink
Restore M-<up> binding for paredit
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Aug 9, 2023
1 parent db0ebae commit 2c76710
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lisp/init-paredit.el
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
;; Suppress certain paredit keybindings to avoid clashes, including
;; my global binding of M-?
(dolist (binding '("RET" "C-<left>" "C-<right>" "C-M-<left>" "C-M-<right>" "M-s" "M-?"))
(define-key paredit-mode-map (read-kbd-macro binding) nil)))
(define-key paredit-mode-map (read-kbd-macro binding) nil))
(define-key paredit-mode-map (kbd "M-<up>") 'paredit-splice-sexp-killing-backward))



Expand Down

0 comments on commit 2c76710

Please sign in to comment.