cursive
cursive copied to clipboard
Cursive: The IDE for beautiful Clojure code
I would like to use the --config option with a BB repl. Here’s the docs https://book.babashka.org/#usage I need this to separate deps and tasks into separate files. Workaround is to...
Same to #2457 and #2233 but is reproduced for the latest cursive `1.12.1-2021.3` ``` IntelliJ IDEA 2021.3.1 (Ultimate Edition) Build #IU-213.6461.79, built on December 28, 2021 Licensed to JetBrains Team...
I'm looking for a way for Cursive to connect to a remote TCP Socket and treat that as a REPL. It would only need to display everything that comes from...
Recently CLJS added support for string requirements, eg: ```clojure (ns awesome.app (:require ["react" :as react])) (react/createElement "div" nil) ``` Currently Cursive doesn't recognize it at all. Not sure how feasible,...
`as->` uses `let` to assign values to symbols. ``` (as-> something x (do-stuff x 1 2) (do-something-else 3 x)) ``` translates to: ``` (let [x something x (do-stuff x 1...
When referring functions in requires of Google Closure, the functions are marked as unresolved. E.g. the following will mark `format` as unresolved (hovering over the unresolved symbol shows the message...
There is an issue when importing a new project with existing sources, Deps style, you have a monorepo or something that might end-up having modules with the same name, for...
When using Clojure Test, the thrown? test is incorrectly flagged as "cannot be resolved" Example (deftest xyz (is (thrown? Exception (... exception raising code ... ))))
*This seems related to issues #2786 and #2106, which were fixed in 1.13.0-eap1, but this bug still happens on 1.13.0-eap1* Given Parinfer is enabled and we have the following code....
I don't remember exactly what the UI was previously, but now it shows this when renaming a function When I want to rename a file by a character, I need...