Lispy: Refer to upstream patches.

master
Pierre Neidhardt 2021-02-25 18:24:24 +01:00
parent 76a1497f0a
commit 491f6f6fbb
2 changed files with 3 additions and 2 deletions

View File

@ -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))

View File

@ -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)