cursive

Issues at: https://git.io/cursive-issues
cfleming 2021-05-10T01:09:24.321600Z

Yes, definitely - I would like this myself, and I see a lot of people using babashka out there. It’s tricky to do right unfortunately, but there may be an 80/20 that I could do with less effort. There’s an issue here in case you find things not already listed: https://github.com/cursive-ide/cursive/issues/2516

2021-05-10T01:28:29.321900Z

👍 I will see if I can contribute anything and if not I will just watch the issue on GH, thanks as always for all the hard work Colin

kari 2021-05-10T09:18:33.322800Z

Is it safe to download IntelliJ IDEA 2021.1.1? I.e.: no issues with Cursive?

raspasov 2021-05-10T10:44:43.322900Z

Works on my machine: IntelliJ IDEA 2021.1.1 (Ultimate Edition) Build #IU-211.7142.45, built on April 30, 2021 Runtime version: 11.0.10+9-b1341.41 x86_64 VM: Dynamic Code Evolution 64-Bit Server VM by JetBrains s.r.o. macOS 11.3.1

kari 2021-05-10T14:04:21.323500Z

Ok! Thanks!

👍 1
2021-05-10T21:40:11.324Z

observation: don’t use IntelliJ’s magic wand for resolving merge conflicts when Parinfer is turned on. or at least check the results very carefully

2021-05-11T14:20:38.329Z

yeah they call it “Automatically”: https://www.jetbrains.com/help/idea/resolve-conflicts.html#CRLF_warning

2021-05-11T14:21:40.329300Z

anyway it seems to basically trash the form, if you add indentation. like, suppose you have:

(let [x 1]
  (inc x))
and then in a later commit, you wrap that entire tree in a new if or something. then it can end up as
(let [x 1])
(inc x)