I’m having trouble with getting autocomplete to work when I start up a proto-repl. What’s strange is I am just trying to get it to work for the proto-repl-demo
repo
googling hasn’t been too fruitful as of yet
Fairly straightforward project.clj
as well…
(defproject proto-repl-demo "0.1.0-SNAPSHOT"
:description "A sample Clojure project for demoing capabilities of the Proto REPL package for the Atom editor."
:url "<https://github.com/jasongilman/proto-repl-demo>"
:license {:name "Eclipse Public License"
:url "<http://www.eclipse.org/legal/epl-v10.html>"}
:dependencies [[org.clojure/clojure "1.8.0"]
[proto-repl "0.3.1"]
[proto-repl-charts "0.3.1"]]
:profiles
{:dev {:source-paths ["dev" "src" "test"]
:dependencies [[org.clojure/tools.namespace "0.2.11"]]}})