Peter Fraenkel
Peter Fraenkel
I definitely can't reproduce this on the sample project in this repo. From the `*Messages*` buffer: ``` [nREPL] Starting server via /usr/local/bin/lein update-in :dependencies conj \[acyclic/squiggly-clojure\ \"0.1.9-SNAPSHOT\"\] -- update-in :dependencies...
I'm pretty sure that this is due to `clojure/tools.reader` no longer being provided as part of CIDER. As always, you can verify such theories by looking in the `*nrepl-messages-...` buffer...
Awesome. It's really irritating that some linters fail in a manner that produces unparseable output. The invocations are wrapped in `(try ... (catch ...))`, but exceptions somehow get through sometimes.
That's definitely something I've thought about. Of course this won't stop corruption within the linting VM, as you're still using Eastwood in this nonstandard persistent fashion, and it might actually...
I could ask you the same thing... To use your phrase, I've also got other things breathing down my neck, and my day job doesn't involve clojure, so there's a...
No, it is upsetting! I really wish I could find time to work on this, because it would be fun, and because it's really great for my ego that there...
When trying to reproduce this in the sample project, I initially got the error because `acyclic/squiggly-clojure` had not been properly injected during `cider-jack-in`. This happened because `flycheck-clojure-setup` was run before...
This is suspicious: ``` (--> id "10" op "eval" session "c4e60ee5-7692-451e-ba30-153df62589de" time-stamp "2019-11-29 10:49:09.966413328" code "(do (require 'squiggly-clojure.core) (squiggly-clojure.core/..." ) ( Okay, I've called `cider-jack-in` in a fairly barebones project...
To get proper lazy loading, without having `cider` re-initializing `cider-jack-in-dependencies`, the following `use-package` setup seems to work. I don't need to do anything other than `cider-jack-in`. ``` (use-package cider :ensure...
This feature would actually have been useful to me last week! To be most flexible, I think we want to be able to specify the root directory on both sides,...