cursive

Issues at: https://git.io/cursive-issues
p-himik 2020-08-16T07:46:31.085600Z

Is there any way to disable the prompt to convert pasted HTML into Hiccup?

cfleming 2020-08-18T23:35:29.112200Z

There isn’t, but I’ll add one.

cfleming 2020-08-18T23:37:09.112400Z

https://github.com/cursive-ide/cursive/issues/2416

👍 1
Mr. Savy 2020-08-16T23:16:20.089600Z

I'm getting a "cannot be resolved" for all function names in Intellij. I saw that there was a recent conversation about this. Would that be the one to refer to or is there a more general troubleshooting suggestion to try first? I suspect the namespaces aren't being imported correctly, but I'm not really sure.

cfleming 2020-08-18T23:44:13.112900Z

There are a few things to check here. This is usually that the project hasn’t synced correctly. Are you using deps/lein to manage your project? If so, check the relevant toolwindow and make sure that your project is correctly registered there. If it’s not, then in the project view, right click on the project.clj/deps.edn and select add as lein/deps project.

cfleming 2020-08-18T23:45:20.113100Z

If it is, then check that your module has dependencies - go to File -> Project Structure -> <your module> -> Dependencies and make sure that looks roughly like you expect.

cfleming 2020-08-18T23:45:43.113300Z

If you’re getting it for all symbols and not just your Java interop then it’s probably not your SDK.

cfleming 2020-08-18T23:46:16.113500Z

Failing all that, you can also try File -> Invalidate Indexes and Restart, since sometimes the indexes can get funky.