cider
cider copied to clipboard
The Clojure Interactive Development Environment that Rocks for Emacs
## Expected behavior Display result of evaluation commands and debugging steps in ``*cider-result*`` popup-buffer just like ``cider--pprint-eval-form`` does. - An option to pprint into ``*cider-result*`` when debugging and deactivate displaying...
## Expected behavior Say I have this code (which is a test case developed from a stacktrace in Spectre which does similar things but more reasonably): ``` (defmacro d []...
I just noticed that the ELPA CIDER build is broken because logview (https://github.com/doublep/logview) is actually only MELPA. I was under the impression this was some built-in package or whatever -...
I'm thinking of cutting one final CIDER 1.x release soon, before #3352 is finished, and then prepare for a CIDER 2.0 release. Why so? - it feels like a good...
Context: https://clojurians.slack.com/archives/C0617A8PQ/p1687640686417379 As discussed on Slack, a naive clj-only implementation of a feature which allows the user to skip `cider-connect` prompts asking for the hostname and port. The intended usage...
## Expected behavior When doing step-wise debugging in a function that was primed with `cider-debug-defun-at-point`, quitting with `q` should silently exit and bring me back to normal development. ## Actual...
## Context from #3343: > > About cider-enable-on-all-existing-clojure-buffers, I'm unconvinced why this function exists at all? Cider users should already have it added to their clojure-mode-hook, otherwise it seems intrusive...
## Expected behavior all tests should pass when running on GH ## Actual behavior From recent (windows-emacs-27.2 GH action run logo)[https://github.com/clojure-emacs/cider/actions/runs/3752449361/jobs/6374620615]: ``` jack in to clojure tools cli Traceback (most...
There is currently an edge case when you interactively eval in a source file that has no ns form (and no list form at all). And you eval something that...
## Expected behavior On this code `(println (+ 1 (* 2 3)))` with the cursor anywhere in (* 2 3) we expect to eval 6, as I understand from: https://github.com/clojure-emacs/cider/pull/2881...