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
{{ message }}
This repository was archived by the owner on Jan 15, 2018. It is now read-only.
I assume this is a namespace issue, doesn't happen in emacs but does in catnip.
When I save a namespace file the minibuffer goes (in-ns) to that namespace.
After that, (doc ) and presumably other things in it's namespace are not available.
noirproject.views.svgtest» (doc)
java.lang.RuntimeException: Unable to resolve symbol: doc in this context
Between Clojure 1.2.0 and 1.3.0, (doc moved from (clojure.core/doc) to (clojure.repl/doc)
(I'm using 1.4.0 but clojuredocs doesn't know about that version).
This may be better fixed by a configuration change at my end, but it would be nice if catnip shipped with it set right, or at least with instructions in README.md on how to set it.
I assume this is a namespace issue, doesn't happen in emacs but does in catnip.
When I save a namespace file the minibuffer goes (in-ns) to that namespace.
After that, (doc ) and presumably other things in it's namespace are not available.
noirproject.views.svgtest» (doc)
java.lang.RuntimeException: Unable to resolve symbol: doc in this context
Between Clojure 1.2.0 and 1.3.0, (doc moved from (clojure.core/doc) to (clojure.repl/doc)
(I'm using 1.4.0 but clojuredocs doesn't know about that version).
This may be better fixed by a configuration change at my end, but it would be nice if catnip shipped with it set right, or at least with instructions in README.md on how to set it.
Running this in the repl helps:
(clojure.core/refer 'clojure.repl)
This static fix in user.clj would help
https://twitter.com/bostonaholic/status/130130333801775104
The text was updated successfully, but these errors were encountered: