Skip to content

Commit

Permalink
Correct evilcp theme's wrong command at "M-down".
Browse files Browse the repository at this point in the history
The corresponding splicing command should kill forward like paredit theme instead of backward ("M-up" does that already).
  • Loading branch information
daanturo committed Jan 29, 2021
1 parent 38a7df4 commit 259188b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lispy.el
Expand Up @@ -9688,7 +9688,7 @@ When ARG is non-nil, unquote the current string."
(define-key map (kbd "DEL") 'lispy-backward-delete)
(define-key map (kbd "M-s") 'lispy-splice)
(define-key map (kbd "M-<up>") 'lispy-splice-sexp-killing-backward)
(define-key map (kbd "M-<down>") 'lispy-splice-sexp-killing-backward)
(define-key map (kbd "M-<down>") 'lispy-splice-sexp-killing-forward)
(define-key map (kbd "M-r") 'lispy-raise-sexp)
(define-key map (kbd "M-?") 'lispy-convolute-sexp)
(define-key map (kbd "M-S") 'lispy-split)
Expand Down

0 comments on commit 259188b

Please sign in to comment.