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
Hi! Love this project btw, and to my surprise, ClojureScript actually seems to work - albeit, in a bit of a tricky way. For example, it seems that Clojure Sublimed cannot resolve Clojure Core functions on its own, but will work just fine when I call them with the full namespace.
Take this example, which does not work:
Whereas this example does work, because I'm calling the + with a full namespace:
The text was updated successfully, but these errors were encountered:
On further investigation it seems it's because in CLJS core functions are actually in cljs.core namespace, not clojure.core, and so cljs.core does not work at all, but if I explicitly call the JVM clojure namespace, it works.
Hi! Love this project btw, and to my surprise, ClojureScript actually seems to work - albeit, in a bit of a tricky way. For example, it seems that Clojure Sublimed cannot resolve Clojure Core functions on its own, but will work just fine when I call them with the full namespace.
Take this example, which does not work:
Whereas this example does work, because I'm calling the
+
with a full namespace:The text was updated successfully, but these errors were encountered: