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

Popular posts from this blog

javascript - I need to update the text of a paragraph by inline edit -

javascript - THREE.js reposition vertices for RingGeometry -

assembly - What is the addressing mode for ld, add, and rjmp instructions? -