Hey everyone, I'm not sure if I'm doing something wrong, but I can't make proto-repl work on Windows... 😕
I don't have autocompletion and stuff on the editor
All that only works if you have a REPL running and the code loaded @imetallica
@seancorfield you mean I already need to have an repl running before starting the repl "inside" atom?
No. I mean you need ProtoREPL connected to a REPL -- either in Atom or outside it -- that is running in the context of your project's code.
Ah, gotcha
So, for autocompletion, do I need to load the file into repl?
Most of the "smarts" that you get from ProtoREPL come from its ability to ask the live, running Clojure process about the code.
For auto-completion, most of the support for that is based on the code having been compiled into the live, running process.
Also, a lot of things are dependent on your project having ProtoREPL as a dependency (so it is also loaded and running in your REPL process).
[proto-repl "RELEASE"]
in your dev dependencies.
(unless you want a specific version -- that will always give you the latest release when you start the REPL).
I'll give a shot then
@seancorfield thanks for the help m8! 🙂
Any time! 🙂 I switched from Emacs to ProtoREPL after last year's Conj and I've been very happy with it.