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
The refactoring in 4004862
essentially turned (eq repl-cljs? params-cljs?) into (and repl-cljs? params-cljs?), which is not a valid transformation - when both predicates are false, ie having a dead clj repl and trying to start a new clj one, it should evaluate to true and offer to reuse the repl.
The text was updated successfully, but these errors were encountered:
yuhan0
added a commit
to yuhan0/cider
that referenced
this issue
Jun 15, 2023
Expected behavior
Cider asks to reuse dead clj REPLs.
Actual behavior
The refactoring in 4004862
essentially turned
(eq repl-cljs? params-cljs?)
into(and repl-cljs? params-cljs?)
, which is not a valid transformation - when both predicates are false, ie having a dead clj repl and trying to start a new clj one, it should evaluate to true and offer to reuse the repl.The text was updated successfully, but these errors were encountered: