cursive icon indicating copy to clipboard operation
cursive copied to clipboard

Cursive: The IDE for beautiful Clojure code

Results 298 cursive issues
Sort by recently updated
recently updated
newest added

# Problem I'm seeing exceptions like this from time to time, when I try to interrupt some evaluation: ```clojure ERROR: java.lang.UnsupportedOperationException at java.base/java.lang.Thread.stop(Thread.java:1667) at nrepl.middleware.session$interrupt_stop$fn__9394.invoke(session.clj:198) at clojure.core$binding_conveyor_fn$fn__5835.invoke(core.clj:2047) at clojure.lang.AFn.call(AFn.java:18) at...

If the strings are joined with newline, this happens. Joining them with some extra character, like a dot, resolves the issue. ![image](https://github.com/cursive-ide/cursive/assets/62071148/3b7fadc1-c5c4-4bc5-ba76-30ef39020096)

There is a problem with using type hints in combination with `@`. If you use `deref` instead, it works as expected. (This is from Cursive, not Clojure, as `(set! *warn-on-reflection*...

https://github.com/clj-commons/digest `(:require [clj-commons.digest :as digest])` load https://github.com/clj-commons/digest/blob/master/src/clj_commons/digest.clj but Cursive mark it as deprecated, because of https://github.com/clj-commons/digest/blob/master/src/digest.clj#L5 . But this is another namespace.

The following namespace form is valid: ```clojure (ns foo #:ghostwheel.core {:check false} (:require [clojure.set :as set])) ``` However, as the `attr-map` is provided as a namespaced map, Cursive thinks the...

When including ':java-source-paths' in project.clj and using a Project SDK (in my case Java 8) I get the following problem when starting repl: ``` #error { :cause org/some/util/SomeJavaClass has been...

I haven't dug much into this, but I suspect this is related to how Cursive is dealing with `clojure.test/report` or `clojure.test/try-expr`. This test works fine from a standard `lein repl`...

Since issue #2554 we have much better support for working with Polylith codebases in Cursive, by checking "Resolve over whole project": ![image](https://github.com/cursive-ide/cursive/assets/631272/c7a2290c-0015-4df5-8800-6f1574a1e879) We need one more change to get the...

From @onetom in slack: I tried to specify `-e (set!,*print-namespace-maps*,false)` as Common options / Parameters for a local nREPL run config, but it ends up at the end of the...

Hello, I use the [lambdaisland.cucumber.dsl](https://github.com/lambdaisland/kaocha-cucumber) dependency in my project to write tests with Cucumber and Gherkin. During the development I face two problems: 1. The imported macroses are ignored. Even...