cursive

Issues at: https://git.io/cursive-issues
Nicolas Estrada 2021-06-14T19:08:01.175700Z

@cfleming hi, is there any way to use babashka's nREPL without having noisy completion errors?

(+ 1 2)
=> 3
Error updating completions:
: Could not resolve symbol: cursive.repl.runtime/completions cursive.repl.runtime REPL:1:2

Nicolas Estrada 2021-06-15T09:07:41.001600Z

If there was any way I could contribute or lend a hand, let me know 😉 I'm in an elixir shop now and babashka is my only clojure work I'm going atm

onetom 2021-06-16T02:46:05.040600Z

i would be happy to test babashka support too. im not using babashka extensively yet, partially because of the lack of cursive support. but also because some of the datomic tooling doesn't work in babashka and i think functionalbytes/rmap or redelay didn't work either.

2021-06-14T19:47:05.177400Z

Hi, there is a way to make parinfer not angry when I'm using

(defn a 
  [{:keys [a
           b]}]
  ,,,,)

2021-06-14T19:47:24.177800Z

like for the keys destructuring in vector alignment

2021-06-14T19:47:25.178Z

?

2021-06-14T19:48:49.178100Z

2021-06-15T13:07:30.019500Z

I couldn't find an option for this type of identation

cfleming 2021-06-15T21:51:32.031100Z

If you reformat your code, it should lay it out like that.

2021-06-15T23:31:29.031300Z

nope, it always space to right

2021-06-15T23:31:45.031500Z

it doesn't align at the same length

cfleming 2021-06-15T23:34:35.031800Z

Are you using a font with ligatures? Is that f there actually an fn or something similar?

2021-06-16T00:24:21.032Z

defn

2021-06-16T00:25:16.032300Z

aw

2021-06-16T00:25:26.032500Z

it's the prettify symbols mode

2021-06-16T00:25:47.032700Z

thanks

2021-06-14T19:48:58.178700Z

right now is making this 😞

Matthew Twomey 2021-06-14T20:24:28.180300Z

Hey all, new to both clojure and cursive. I’d like to add a custom task to my project (lein template) in intellij (e.g. so that it shows in the leiningen task list), but it seems like no matter what I do, that task list is “immutable” 😉 Does anyone know if it’s possible?

Matthew Twomey 2021-06-14T20:25:45.180700Z

In other words, I’d like this kibit task (which works on the command line) to show up in this menu:

cfleming 2021-06-14T22:30:17.181100Z

If you delete the closing ], parinfer will fix it up.