Skip to content
#

cider

Here are 48 public repositories matching this topic...

shashurup
shashurup commented Dec 25, 2021

Expected behavior

xref-find-references with cider backend must return either absolute file name or the name relative to the file of the current buffer.

Actual behavior

the file name returned is realtive to src directory and, as a result, selecting a reference in xref buffer doesn't work.

Steps to reproduce the problem

Put a cursor to some function in a clojure buffer, invoke x

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