clojure - How is it possible to run the doc-command in a CounterClockwise-REPL in Eclipse? -
clojure - How is it possible to run the doc-command in a CounterClockwise-REPL in Eclipse? -
is somehow possible start documentation within repl in eclipse (i'm using counterclockwise-plugin). tried e.g.
(clojure.repl/doc doc) but throws:
classnotfoundexception clojure.repl java.net.urlclassloader$1.run (urlclassloader.java:366) when start repl terminal (e.g. using clojure or lein repl), works fine. used full-qualified name, don't why not working.
the clojure.repl namespace comes clojure, not in scope.
to equivalent behavior normal repl can execute following:
(use 'clojure.repl) or, more consertatively:
(require '[clojure.repl :as repl]) eclipse clojure counterclockwise
Comments
Post a Comment