Clojure Core functions not resolved in CLJS files
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:

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.
And if I attempt to load cljs.core namespace I get this error instead:
Cool!