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

It looks like PATH variables are not applied to all shell interactions done by Cursive Shortly after opening a project with particular project.clj, the IDE reports unhandled exception. The problem...

Given following java class: ``` public class Foo { public String bar; public void bar(String bar) { this.bar = bar; } } ``` the following call in clojure: ``` (ns...

Default java constructor can not be resolved: For instance java class: ``` public class Foo { } ``` Clojure: ``` (Foo.) ``` Will generate invalid warning: **org.example.Foo constructor cannot be...

This is more a question for help before submitting an actual issue; since I am not sure if this is cursive or Intellij's blame. I am using a monorepo, with...

Sometimes I like to organize data in a tabular-ish format, for example vectors that represent tables, `case`, `cond`, `are` forms etc. ```clj [1 2 3 10 20 30 100 200...

When I try to load a namespace, that has a `:require-macros` dependency on "itself" I get a dependency cycle error. For example in `replicant.alias` from [Replicant](https://github.com/cjohansen/replicant): ```clojure (ns replicant.alias (:require...

![Image](https://github.com/user-attachments/assets/188d2242-7aff-45ce-bb1a-18a342318b28) Here I've got a test that throws an exception with a quite long message. It's not possible to see the whole thing! (well, If you copy paste it somewhere...

While editing Clojure files, Parinfer will stop working. The only way I found to get it working again is to restart IntelliJ. Toggling structural editing does not fix it. There...

In a [recent Clojure Visual Tools meetup](https://www.youtube.com/watch?v=c0Rl9DKOTOY) Nikita demoed Clojure Sublimed. I found some color scheme/syntax highlight features intriguing and would like to see these in Cursive. I haven't done...

Right now we can either run with the IJ classpath, which can be a bit risky given all the other stuff present there, or we can give cli opts I'd...