cider

A channel dedicated to the Clojure Interactive Development Environment that Rocks (aka CIDER). :cider:
v3ga 2020-09-25T00:12:54.015600Z

Hi, I recently saw someone using cider on youtube and they had a buffer called cider-results. How would I go about making that visible? I didn't see it in the docs.

bartuka 2020-09-25T02:36:28.015700Z

sorry, my internet connection was really bad. Yeah, you are right. I was imagining that would be possible get these info in a different way

bartuka 2020-09-25T02:36:34.015900Z

but probably not 😕

2020-09-25T07:50:33.018Z

@decim Hi, did you mean a buffer called `*cider-inspect*`? If so, you can call cider-inspect-last-result command.

👍 1
practicalli-john 2020-09-25T12:03:46.021100Z

@decim The cider inspecter is really useful for exploring data, paging through large data sets and navigating levels of nested data https://practicalli.github.io/spacemacs/evaluating-clojure/inspect.html

👍 2
2020-09-25T15:10:50.022300Z

is there an easy way to explore a javadoc API from Emacs/cider?

2020-09-25T15:13:08.023100Z

actually https://github.com/skeeto/javadoc-lookup works decently but only for the java sdk

dpsutton 2020-09-25T15:15:04.024100Z

There’s a cider javadoc command that will open a browser. Not sure if that’s what you’re looking for

2020-09-25T15:21:00.024400Z

yeah but it doesn't work with generic libraries

2020-09-25T15:22:29.025100Z

yeah it's kind of the same as the javadoc-lookup package in a way

practicalli-john 2020-09-25T17:54:53.028300Z

@andrea.crotti I add Java source code to the class path to help CIDER find docs for Java libraries. I appreciate this may not be available for all libraries For example, with Clojure CLI tools, I use an alias to add the openjdk sources and it helps a lot https://github.com/practicalli/clojure-deps-edn/blob/live/deps.edn#L230-L243