-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Effect of *print-length*
might not be obvious
#3
Comments
Thanks for the report! I've just pushed what should be a fix. Would you give it a try and let me know if it works for you? |
Thanks! Did a quick try, but seems it didn't help. Thinking that the power of Leiningen (ns local
...)
(defn vega []
{:spec ...
;; Allow loading whole namespace, but keep a commented-out form handy for vega-view
#_(vega) I bring cursor to end of the
|
Hm. When I manually set the |
Hmm, odd. Still getting the same behavior :/ I thought that this was a Leiningen magic thing, but seems to happen with deps.edn[1] too. Odd thing that when I hack the format to use
This of course leaves things a bit untidy :) So there is probably something odd in my local setup. I did check though the other printing options in Cider, but it seems that I haven't changed the defaults. Might be that the offender dawns on me on some time later, maybe after a good night sleep (I'm fine with closing this issue also) :) [1] Using a small deps.edn with a csv lib and pulling cider from my :cider {:extra-deps {cider/cider-nrepl {:mvn/version "0.24.0"}
refactor-nrepl {:mvn/version "2.5.0"}}
:main-opts ["-m" "nrepl.cmdline"
"--middleware" "[cider.nrepl/cider-middleware,refactor-nrepl.middleware/wrap-refactor]"
"--bind" "127.0.0.1"
"--interactive"
"--color"]} |
I've managed to replicate it here now. I'll tinker with it and let you know when it's sorted out. |
Further investigation suggests that the other cider printing options aren't being used (no |
Thanks for the effort! :) |
I had set
*print-length*
to a pretty conservative value (to prevent flood in general) and was wondering why data is missing from the vega graph. Could*print-length*
be bound tonil
for the duration of cider eval?Coincidentally, the same thing bit me while playing with Oz, which helped in finding the cause of the problem in this situation 😅
The text was updated successfully, but these errors were encountered: