cursive
cursive copied to clipboard
Cursive: The IDE for beautiful Clojure code
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...