The Wayback Machine - https://web.archive.org/web/20220221135253/https://github.com/topics/cider
Skip to content
#

cider

Here are 51 public repositories matching this topic...

zalky
zalky commented Jan 25, 2022

Expected behavior

I often need to connect to both a clj nrepl server as well as a shadow-cljs nrepl server for full stack dev. Because the clj nrepl server prints its port to .nrepl-port, and shadow prints its port to .shadow-nrepl/nrepl.port, ideally their respective ports should both be automatically discoverable when I try to connect via cider-connect.

Actual behavior

If a

Cider
bbatsov
bbatsov commented Aug 14, 2020

Currently the eldoc type is either function or variable:

(defn- extract-eldoc
  [info]
  (if-let [arglists (seq (-> info extract-arglists format-arglists))]
    {:eldoc arglists :type "function"}
    {:type "variable"}))

This means that the result users see is not particularly accurate, not to mention that the function check is pretty primitive. We should add types like `m

Improve this page

Add a description, image, and links to the cider topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cider topic, visit your repo's landing page and select "manage topics."

Learn more