cider
cider copied to clipboard
The Clojure Interactive Development Environment that Rocks for Emacs
**Is your feature request related to a problem? Please describe.** I'm often with the cursor inside a form I'd like to evaluate. Typically in rich comments I edit an argument...
# Feature request The top line in debug mode describing the possible actions, and key-bindings is blending into the code-blocks. It would be preferable to have an inverse colour scheme...
## 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...
I can imagine someone might want to filter out variables, and only show functions, but I would like to only show the public API of an ns. In my case...
nREPL now has [dynamic insertion of middleware](https://github.com/nrepl/nrepl/pull/185), as well a [sideloader](https://github.com/nrepl/nrepl/pull/162) for requesting resources from the client. CIDER has [basic support for sideloading](https://github.com/clojure-emacs/cider/commit/ac4fedf8b29519f4b4ccac4aa40770d0090810e6), so it would seem that all the...
## Steps to reproduce the problem ``` (defproject om-tutorial "0.1.0-SNAPSHOT" :description "My first Om program!" :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.8.51"] [org.omcljs/om "1.0.0-beta1"] [com.cemerick/piggieback "0.2.1"] [figwheel-sidecar "0.5.14"]] :repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]} :clean-targets...
**Thanks!** First, thank you for cider. It is magnificently useful and I so appreciate all the hard work! **Is your feature request related to a problem? Please describe.** For a...
For JavaDoc to work properly for third-party libraries we need to register their JavaDoc like this: ``` (javadoc/add-remote-javadoc "com.amazonaws." "http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/") (javadoc/add-remote-javadoc "org.apache.kafka." "https://kafka.apache.org/090/javadoc/") ``` For the sake of convenience we...
## Expected behavior After starting a repl, moving the cursor over a symbol in the clj file and hitting ', h d' (or SPC m h d) should open a...
## Expected behavior Cider should allow to configure where to send the result of the last expression to, if a buffer/file gets evaluated ## Actual behavior Cider always sends the...