Autocomplete is going to depend on your editor. For Emacs and vim you'll need cider middleware: https://gist.github.com/rauhs/c9183e7afa2dca87126e
https://github.com/clojure-emacs/cider-nrepl See the wrap-complete middleware. It'll pull in compliment: https://github.com/alexander-yakushev/compliment A few weeks ago I did a write up of what I've figured out when I got into CLJS myself: https://gist.github.com/rauhs/c9183e7afa2dca87126e But I never got any feedback so not sure if there are mistakes. Nowadays I just run two JVMs. One for the REPL and one figwheel. I like to keep them separate since I sometimes have to restart figwheel when it messes up (with macros). HTH On Monday, April 27, 2015 at 6:01:20 PM UTC-4, Casper Clausen wrote: > I am trying to get into Clojurescript, however I am suffering a bit from not > having autocomplete and so on that I am used to from Clojure. > > Now I have a nice Figwheel REPL running (which doesn't give me autocomplete > unfortunately). Is there any way to get the available functions in a > namespace, like 'clojure.repl/dir' would give you in Clojure? > > I would also be open to any hints that would let me navigate and explore a > new(unknown) library in general. > > And lastly, is there any overview of the Clojurescript core namespace and/or > repl utility functions? > > Thanks > > /Casper -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
