Skip to content
#

cider

Here are 55 public repositories matching this topic...

Cider
Thunderz2016
Thunderz2016 commented May 17, 2022

Describe the Bug

On Linux, using Ctrl + R to reload Cider will create duplicate tray icons that cannot be removed until reboot or log out. This issue can be reproduced as many times as one desires, creating a seemingly infinite amount of duplicate tray icons. If the user attempts to restart the Cinnamon desktop environment using the panel menu, the tray icons will turn invisible and stay on t

bug good first issue platform: Windows platform: Linux
MicahElliott
MicahElliott commented May 13, 2022

Problem: It seems good practice to mark your non-public vars as ^:private (including fns from defn-). But then cider-ns-browser (a very useful view) doesn't show them. And it's still useful to document private vars.

Solution: Enable the private vars to be shown, with their docstrings. Could be a toggle command like a (for "show All") in the map (https://github.com/clojure-emacs/

feature request good first issue
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

enhancement good first issue
cider
aaronsky
aaronsky commented Sep 10, 2020

Project should include more examples or case studies in documentation.

Ideas:

  • a complete E2E pipeline using all of xcodebuild, altool, and Cider
  • examples of more complex configuration files
  • an example of how you could use a dedicated metadata repo, when coupling to your app repo is impractical.
documentation good first issue

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