This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-07-09
Channels
Just curious, @cfleming. The CLJD compiler seems fine with the .cljc
extension for CLJD source. Can you think of any "wins" in switching all my .cljd
sources to cljc? Guessing that will not help with macro-genrerated macros being recognized.
No, it won’t. And in general CLJC is a bit more flakey in Cursive, I’m planning to fix that but have not got to it yet. If you don’t have a need to use it (i.e. you’re not sharing code with a Clojure server or something), I’d recommend leaving your code as CLJD.
👍 2
formatting question
consider the following case in a let
binding
(let [variable-name-that-is-really-long
(and
is-zero?
(not follower-number-is-zero?))]
"blah")
is there a way to auto indent variables on new lines?
e.g.
(let [variable-name-that-is-really-long
(and
is-zero?
(not follower-number-is-zero?))]
"blah")
I couldn't find an option in the formatting menu.