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
Install clj-new plugin in your ~/.clojure/deps.edn under a :new alias. Or create a new tools-deps project however you want (I assume; the clj-new path is the one I took).
Run clj -A:new lib com.timetraveltoaster/cursive-test.
Add org.clojure/core.async {:mvn/version "1.3.610"} to your cursive-test/deps.edn file.
Require clojure.core.async :as async somewhere in the Clojure src.
Call async/<!! or async/>!! in that namespace.
Expected behavior:
Cursive can autocomplete and resolve async/<!! and async/>!!.
Observed behavior:
Cursive can neither autocomplete nor resolve async/<!! and async/>!!.
Note that it can autocomplete and resolve async/<! and async/>!.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
~/.clojure/deps.edn
under a:new
alias. Or create a new tools-deps project however you want (I assume; the clj-new path is the one I took).clj -A:new lib com.timetraveltoaster/cursive-test
.org.clojure/core.async {:mvn/version "1.3.610"}
to yourcursive-test/deps.edn
file.clojure.core.async :as async
somewhere in the Clojure src.async/<!!
orasync/>!!
in that namespace.Expected behavior:
Cursive can autocomplete and resolve
async/<!!
andasync/>!!
.Observed behavior:
Cursive can neither autocomplete nor resolve
async/<!!
andasync/>!!
.Note that it can autocomplete and resolve
async/<!
andasync/>!
.The text was updated successfully, but these errors were encountered: