cursive

Issues at: https://git.io/cursive-issues
Oliver George 2020-08-19T03:54:09.114700Z

Quick sanity check. I updated IntelliJ and seems like Cursive isn't working. IntelliJ IDEA 2020.2 (Community Edition) Build #IC-202.6397.94, built on July 27, 2020 Non-Bundled Plugins: String Manipulation, com.intellij.plugins.watcher, name.kropp.intellij.makefile, net.seesharpsoft.intellij.plugins.csv, com.cursiveclojure.cursive, PythonCore

Oliver George 2020-08-19T03:54:27.115100Z

Should I downgrade IntelliJ?

cfleming 2020-08-19T03:56:32.115200Z

Looks ok to me, I’m using Cursive on 2020.2 and lots of others are too. What’s not working?

Oliver George 2020-08-19T03:57:40.115400Z

Oliver George 2020-08-19T03:57:58.115900Z

Perhaps my project isn't configured right. I'll poke around more.

Oliver George 2020-08-19T03:58:06.116100Z

Thanks for confirming it should work.

cfleming 2020-08-19T03:58:35.116300Z

If this is a project that was working previously, the first thing to try would be File->Invalidate caches and restart - indexes can get funky after upgrades.

Oliver George 2020-08-19T03:59:39.116500Z

Found the problem. My fault. I'd rebuilt the project but not enabled a required deps alias.

Oliver George 2020-08-19T04:00:23.116700Z

Reason isn't interesting but it's react native and I'm switching between figwheel and krell... both have different clojurescript deps so I don't specify it as a top level dep.

Oliver George 2020-08-19T04:00:27.116900Z

Anyway, my bad.

Oliver George 2020-08-19T04:02:51.117900Z

@cfleming while you're about. It'd be really nice if js interop stuff wasn't all marked as "not resolved"...

Oliver George 2020-08-19T04:04:07.118500Z

Same for core js stuff like promises...

Oliver George 2020-08-19T04:04:10.118600Z

cfleming 2020-08-19T04:04:13.119Z

Yeah, I was actually planning to start fixing that this afternoon - it’s on my shortlist.

🎉 3
Oliver George 2020-08-19T04:04:24.119200Z

Awesome.

beders 2020-08-19T04:22:41.121600Z

I'm getting Dependency errors when using [day8.re-frame/tracing "0.5.1"]. When loading a namespace, Cursive displays: "Dependency cycle. trace.cljc -> trace.cljc -> trace.cljc"

beders 2020-08-19T04:22:54.122Z

any way around that other than not using this library?

beders 2020-08-19T04:24:25.122400Z

(this is with old fighweel using piggy back and whatnot)

stuartrexking 2020-08-19T05:20:56.124700Z

Can anyone remind me which setting is responsible for wrapping on indenting? Say I have

(comment)
(println "HELLO")
if I indent the second line I want it to automatically wrap like so
(comment
  (println "HELLO"))

misha 2020-08-19T20:27:36.127600Z

stuartrexking 2020-08-19T05:22:02.125900Z

I've had to setup on ubuntu as my MBP battery exploded and I lost my settings 😢. I can't remember what configuration I had exactly.

stuartrexking 2020-08-19T05:44:48.126600Z

This is what it does with the default settings. I can't tell if it's IdeaVim not playing nicely or Cursive config.

stuartrexking 2020-08-19T06:19:39.127100Z

Looks like what I actually want is parinfer.

stuartrexking 2020-08-19T06:25:36.127300Z

🤐