cider icon indicating copy to clipboard operation
cider copied to clipboard

The Clojure Interactive Development Environment that Rocks for Emacs

Results 216 cider issues
Sort by recently updated
recently updated
newest added

## Expected behavior When interrupting the following test case with `M-x cider-interrupt`: ``` (deftest test-interrupt (while true)) ``` I see the following stacktrace in the REPL buffer: ``` Exception in...

bug

Initially, cheatsheet was designed to display the entire hierarchy in a single Helm buffer (as seen in the screenshot at https://github.com/clojure-emacs/clojure-cheatsheet), allowing the user to search through the entire cheatsheet...

Quite often I want to inspect a class that is written with `^` in the source file. To inspect it with the regular inspect-last-expr, I have to remove the `^`...

feature request

## Context When working with tests frequently, one can forget if a given test failed, succeeded, or if it was run at all. We have tech for 'fringe' indicators, i.e....

feature request
good first issue

nREPL removed support for the failed experimental sideloading functionality and we should follow-up by removing the code from CIDER as well. See https://github.com/nrepl/nrepl/pull/335 for details.

I had an idea sometime ago to conduct a [yearly?] survey for CIDER users, similar to State of Clojure. Such survey would have multiple goals: - Engage the community (people...

maintenance

I am experiencing an issue with `cider-doc` in CIDER. Specifically, when I place the cursor on `string/join` in my Clojure code and invoke the `cider-doc` command, it seems cider-doc not...

## Expected behavior Using `C-u C-c C-p` with `time` should insert result and show "Elapsed time: x.xx msecs" in REPL. ## Actual behavior Result is inserted, but "Elapsed time" is...

bug

## Steps to reproduce 1. `cider-connect-clj` to a remote nrepl over SSH on port 65000 2. Kill that repl. 3. `cider-connect-clj` to local nrepl on port 65000 (same port as...

Instrumenting code like this makes the debugger behave weirdly, sometimes not firing : ```clojure (add-lib 'prismatic/schema {:mvn/version "1.4.1"}) (require '[schema.core]) (schema.core/defn fibo-iter-with-schema ([n :- schema.core/Int] (fibo-iter-with-schema 0 1 n)) ([curr...