This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-11-08
Channels
- # babashka (18)
- # beginners (35)
- # biff (15)
- # cider (24)
- # clj-commons (26)
- # clj-kondo (12)
- # clojure (18)
- # clojure-austin (1)
- # clojure-dev (2)
- # clojure-europe (15)
- # clojure-losangeles (1)
- # clojure-nl (1)
- # clojure-norway (88)
- # clojure-seattle (2)
- # clojure-spec (14)
- # clojure-uk (27)
- # clojuredesign-podcast (5)
- # clojurescript (25)
- # cursive (3)
- # datahike (26)
- # datalevin (13)
- # datomic (39)
- # etaoin (19)
- # events (1)
- # fulcro (12)
- # graphql (1)
- # hyperfiddle (40)
- # introduce-yourself (3)
- # joyride (8)
- # lsp (53)
- # missionary (7)
- # nyc (1)
- # off-topic (31)
- # overtone (10)
- # reitit (6)
- # shadow-cljs (9)
- # slack-help (9)
- # thejaloniki (1)
- # tools-deps (12)
Hi, if I open the project https://github.com/samply/blaze in Cursive 1.13, a Run configuration of a Local REPL on the top-level module works but not on one of the modules inside the modules folder. IntelliJ runs under Mint Linux. The run configuration is simple. It just says "Run with Deps" and chooses the module. In the Clojure Deps Panel all modules are found. Under MacOS it works fine. I get the following error:
Hello. Is support planned for let-bindings vertical alignment to leave bindings with separate form and value (different lines) unaligned, as it has been done for maps vertical alignment (https://github.com/cursive-ide/cursive/issues/2547)? Let example with Align let-binding values turned off
(let [a 1
big-name-b 2
res
(get-complex-result a)]
(+ a big-name-b res))
Let example with Align let-binding values turned on
(let [a 1
big-name-b 2
res
(get-complex-result a)]
(+ a big-name-b res))
Thanks!