cursive icon indicating copy to clipboard operation
cursive copied to clipboard

Cursive: The IDE for beautiful Clojure code

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

Currently my company has a clj formatting guide. Emacs and Vim users have taken up using [cljfmt](https://github.com/weavejester/cljfmt) to enforce this standard (using a shared lein-parent project). Getting IntelliJ/Cursive users to...

Hello, I found an issue when using organize imports in cljc files. Here is an example: ```clojure (ns some-namespace (:require [clojure.test :refer [deftest is]])) #?(:cljs (deftest some-test (is (= 1...

The [Polylith](https://polylith.gitbook.io) architecture comes with the [poly](https://github.com/polyfy/polylith/tree/issue-66) tool written for Clojure that is based on tools.deps. I've been working on [issue-66](https://github.com/polyfy/polylith/issues/66) for a while in the `issue-66` branch to support...

When using tests in Cursive that don't use the format `(is (= something something-else))`, Cursive will display the raw results in the tooltip on mouse over: But when trying to...

Hi, The docs suggest that it should be possible to view the reason for a test assertion failing by hovering over the error line: ![image](https://user-images.githubusercontent.com/535032/183892174-42321e86-dbfd-48dd-aadd-2ebc93787a0d.png) and then view a diff:...

The ability to highlight an s-expression and extract a new function out from it in the same module, much like you can with Ruby/JS/Java etc.

Printing to stdout in go blocks results in an error: ``` Error handling response - class java.lang.IllegalArgumentException: No implementation of method: :out of protocol: #'cursive.repl/Handler found for class: nil ```...

Running `/opt/intellij-idea-ultimate-edition/bin/remote-dev-server.sh` (Arch Linux) to start a remote dev environment on the server, and then connecting on a Windows machine as the client, the server shows these errors, and Clojure...

Following the issue in https://github.com/cursive-ide/cursive/issues/2701 I've tested 1.12.4-eap3 with the following code: ```clojure (deftest my-test1 (println "---") (throw (Exception.))) ``` The result: Error is marked on the `println` line. Another...

This is a pretty useful action for java methods. I'd like it to work on clojure functions.