You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This change adds the support for Krell REPL.
Instead of having to pick a custom REPL and specifying a
cider-custom-cljs-repl-init-form, this is all now included. All the
user has to do is pick the REPL type, which in this case is krell.
(user-error"The Boot ClojureScript REPL is not available. Please check https://github.com/adzerk-oss/boot-cljs-repl/blob/master/README.md for details")))
691
691
692
+
(defuncider-check-krell-requirements ()
693
+
"Check whether we can start a Krell ClojureScript REPL."
694
+
(cider-verify-piggieback-is-present)
695
+
(unless (cider-library-present-p "krell.repl")
696
+
(user-error"The Krell ClojureScript REPL is not available. Please check https://github.com/vouch-opensource/krell for details")))
0 commit comments