Fork me on GitHub
#cider
<
2019-06-12
>
lvh15:06:57

thanks for helping me debug that sesman problem the other day; turns out it's really a spacemacs bug: https://github.com/syl20bnr/spacemacs/issues/12429

lvh15:06:08

just in case someone else comes in with the same problem, I assume I'm not the only spacemacs hybrid-mode user

bozhidar16:06:00

@lvh Good to know! Thanks for following up!

frozenlock19:06:34

I noticed some discrepancies between the normal REPL representation and the printed one :

(sql/call :some-call :some-arg)
-> {:name :some-call, :args (:some-arg)}

(print (sql/call :some-call :some-arg))
-> #sql/call [:some-call :some-arg]nil
Is this caused by CIDER, or is there a missing definition in HoneySQL? https://github.com/jkk/honeysql/blob/354b3502c81c45e4fe5de11dd2139a803e2aa760/src/honeysql/types.cljc#L75

dpsutton19:06:23

can you compare it to running with just lein repl?

dpsutton19:06:30

remove CIDER from the equation altogether

frozenlock19:06:16

It prints as expected with lein repl

frozenlock19:06:31

(sql/call :test :arg)
-> #sql/call [:test :arg]