From 491f6f6fbb383dfae4c50e490f989cca8fd053a2 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 25 Feb 2021 18:24:24 +0100 Subject: [PATCH] Lispy: Refer to upstream patches. --- .emacs.d/lisp/init-lispy.el | 1 + .emacs.d/lisp/patch-lispy.el | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.emacs.d/lisp/init-lispy.el b/.emacs.d/lisp/init-lispy.el index f4612e76..662aee55 100644 --- a/.emacs.d/lisp/init-lispy.el +++ b/.emacs.d/lisp/init-lispy.el @@ -70,6 +70,7 @@ replace the expression with its result." (if (require 'slime nil 'noerror) ;; REVIEW: Fix SLIME REPL issue with "goto". ;; See https://github.com/abo-abo/lispy/issues/182. + ;; Remove once Guix package is updated. (progn (add-to-list 'lispy-goto-symbol-alist '(slime-repl-mode lispy-goto-symbol-lisp le-lisp)) diff --git a/.emacs.d/lisp/patch-lispy.el b/.emacs.d/lisp/patch-lispy.el index 3df2ed61..f2af9e87 100644 --- a/.emacs.d/lisp/patch-lispy.el +++ b/.emacs.d/lisp/patch-lispy.el @@ -1,10 +1,10 @@ ;; REVIEW: Remove once merged upstream: -;; https://github.com/abo-abo/lispy/issues/549 +;; https://github.com/abo-abo/lispy/pull/574. (dolist (mode '(slime-repl-mode slime-mrepl-mode sly-mrepl-mode)) (push `(,mode le-lisp lispy--eval-lisp) lispy-eval-alist)) ;; REVIEW: Remove this workaround when upstream has fixed -;; https://github.com/abo-abo/lispy/issues/550. +;; https://github.com/abo-abo/lispy/pull/575. (push '(sly-mrepl-mode . ("[[:space:]]" "[#`',.@]+" "#[0-9]*" "#[.,Ss+-]" "#[0-9]+[=Aa]")) lispy-parens-preceding-syntax-alist)