You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an unsaved file containing the following code:
(defworld"The world.""world")
(defngreet-world"Greet the world!"
[]
(println"Hello," (str world "!")))
(greet-world)
Trying to look up the documentation for these definitions (after evaluating them) does not work.
See attached screenshot.
Running (doc world) and doc (greet-world) in the REPL does give me the documentation as expected. Further, it does not look like documentation lookup work at all, not even for Clojure defined functions such as println, def or defn.
Am I doing something wrong here?
The text was updated successfully, but these errors were encountered:
hovsater
changed the title
Can't retrieve docs for defintions
Can't retrieve docs for REPL definitions in an unsaved file
Dec 29, 2020
hovsater
changed the title
Can't retrieve docs for REPL definitions in an unsaved file
Can't lookup documentation when evaluating expressions from an unsaved file
Dec 29, 2020
I have an unsaved file containing the following code:
Trying to look up the documentation for these definitions (after evaluating them) does not work.
See attached screenshot.
Running
(doc world)
anddoc (greet-world)
in the REPL does give me the documentation as expected. Further, it does not look like documentation lookup work at all, not even for Clojure defined functions such asprintln
,def
ordefn
.Am I doing something wrong here?
The text was updated successfully, but these errors were encountered: