From 7b3b74c2ad625a7c9f03a0723ddc5e09c51d7675 Mon Sep 17 00:00:00 2001 From: Leo Okawa Ericson Date: Sat, 3 Jul 2021 15:28:03 +0200 Subject: [PATCH] Remove workaround for upstream lispyville PR https://github.com/noctuid/lispyville/pull/297 was merged which makes the changes from https://github.com/hlissner/doom-emacs/pull/5101 obsolete. --- modules/editor/lispy/config.el | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/modules/editor/lispy/config.el b/modules/editor/lispy/config.el index a4556cbe4..3ca5ebb78 100644 --- a/modules/editor/lispy/config.el +++ b/modules/editor/lispy/config.el @@ -38,14 +38,4 @@ additional additional-insert)) :config - (lispyville-set-key-theme) -;; REVIEW Delete this once https://github.com/noctuid/lispyville/pull/297 is merged - (defadvice! +lispy--fix-lispyville-end-of-defun-a (_) - "lispyville-end-of-defun doesn't go to the next defun when -point is already at the end of a defun, whereas -lispyville-beginning-of-defun does." - :before #'lispyville-end-of-defun - (when (<= (- (line-end-position) - (point)) - 1) - (forward-line)))) + (lispyville-set-key-theme))